mirror of https://github.com/openXC7/prjxray.git
piplist: use dedicated .v
Signed-off-by: John McMaster <johndmcmaster@gmail.com>
This commit is contained in:
parent
821c82a879
commit
2ce60d56a7
|
|
@ -1,6 +1,6 @@
|
||||||
create_project -force -part $::env(XRAY_PART) piplist piplist
|
create_project -force -part $::env(XRAY_PART) piplist piplist
|
||||||
|
|
||||||
read_verilog $::env(FUZDIR)/top.v
|
read_verilog $::env(XRAY_DIR)/fuzzers/piplist.v
|
||||||
synth_design -top top
|
synth_design -top top
|
||||||
|
|
||||||
set_property -dict "PACKAGE_PIN $::env(XRAY_PIN_00) IOSTANDARD LVCMOS33" [get_ports i]
|
set_property -dict "PACKAGE_PIN $::env(XRAY_PIN_00) IOSTANDARD LVCMOS33" [get_ports i]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
module top (input i, output o);
|
||||||
|
assign o = i;
|
||||||
|
endmodule
|
||||||
Loading…
Reference in New Issue