piplist: use dedicated .v

Signed-off-by: John McMaster <johndmcmaster@gmail.com>
This commit is contained in:
John McMaster 2018-12-11 16:02:41 -08:00
parent 821c82a879
commit 2ce60d56a7
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
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
set_property -dict "PACKAGE_PIN $::env(XRAY_PIN_00) IOSTANDARD LVCMOS33" [get_ports i]

3
fuzzers/piplist.v Normal file
View File

@ -0,0 +1,3 @@
module top (input i, output o);
assign o = i;
endmodule