diff options
| -rw-r--r-- | hdl/top.sv | 4 | ||||
| -rw-r--r-- | tcl/init.tcl | 1 |
2 files changed, 3 insertions, 2 deletions
| @@ -38,11 +38,11 @@ module top | |||
| 38 | 38 | ||
| 39 | bit ram_rwds_oe; | 39 | bit ram_rwds_oe; |
| 40 | bit ram_rwds_out; | 40 | bit ram_rwds_out; |
| 41 | assign ram_rwds = ram_rwds_oe ? ram_rwds_out : 'bZ; | 41 | assign ram_rwds = ram_rwds_oe ? ram_rwds_out : 1'bZ; |
| 42 | 42 | ||
| 43 | bit ram_data_oe; | 43 | bit ram_data_oe; |
| 44 | bit [7:0] ram_data_out; | 44 | bit [7:0] ram_data_out; |
| 45 | assign ram_data = ram_data_oe ? ram_data_out : 'bZ; | 45 | assign ram_data = ram_data_oe ? ram_data_out : 8'bZ; |
| 46 | 46 | ||
| 47 | alt_jtag_atlantic | 47 | alt_jtag_atlantic |
| 48 | #( .INSTANCE_ID(0) | 48 | #( .INSTANCE_ID(0) |
diff --git a/tcl/init.tcl b/tcl/init.tcl index 82a1697..103a31a 100644 --- a/tcl/init.tcl +++ b/tcl/init.tcl | |||
| @@ -5,6 +5,7 @@ set_global_assignment -name DEVICE 10CL025YU256I7G | |||
| 5 | set_global_assignment -name TOP_LEVEL_ENTITY top | 5 | set_global_assignment -name TOP_LEVEL_ENTITY top |
| 6 | set_global_assignment -name VERILOG_INPUT_VERSION SYSTEMVERILOG_2005 | 6 | set_global_assignment -name VERILOG_INPUT_VERSION SYSTEMVERILOG_2005 |
| 7 | set_global_assignment -name VERILOG_MACRO "SYNTHESIS=1" | 7 | set_global_assignment -name VERILOG_MACRO "SYNTHESIS=1" |
| 8 | set_global_assignment -name NUM_PARALLEL_PROCESSORS 4 | ||
| 8 | 9 | ||
| 9 | proc pin {net loc} { | 10 | proc pin {net loc} { |
| 10 | set_location_assignment -to $net "PIN_$loc" | 11 | set_location_assignment -to $net "PIN_$loc" |
