File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ set_global_assignment -name VERILOG_FILE fifo_tb.v
5757set_global_assignment -name POWER_PRESET_COOLING_SOLUTION "23 MM HEAT SINK WITH 200 LFPM AIRFLOW"
5858set_global_assignment -name POWER_BOARD_THERMAL_MODEL "NONE (CONSERVATIVE)"
5959set_global_assignment -name EDA_TEST_BENCH_ENABLE_STATUS TEST_BENCH_MODE -section_id eda_simulation
60- set_global_assignment -name EDA_NATIVELINK_SIMULATION_TEST_BENCH fifo_tb -section_id eda_simulation
60+ set_global_assignment -name EDA_NATIVELINK_SIMULATION_TEST_BENCH quick_rs232_tb -section_id eda_simulation
6161set_global_assignment -name EDA_TEST_BENCH_NAME fifo_tb -section_id eda_simulation
6262set_global_assignment -name EDA_DESIGN_INSTANCE_NAME NA -section_id fifo_tb
6363set_global_assignment -name EDA_TEST_BENCH_MODULE_NAME fifo_tb -section_id fifo_tb
Original file line number Diff line number Diff line change @@ -145,6 +145,10 @@ begin
145145 rx_read <= 1 ;
146146 end
147147 if (counter == 2 * 10 * RS232_BIT_TICKS + 200 + 2 )
148+ begin
149+ rx_read <= 0 ;
150+ end
151+ if (counter == 2 * 10 * RS232_BIT_TICKS + 200 + 10 )
148152 begin
149153 `ASSERT(rx_data, 8'b01010011 )
150154 end
@@ -212,15 +216,15 @@ begin
212216 // 2.5 ASSERT on first byte
213217 if (counter > 2 * 23 * RS232_BIT_TICKS&& counter < 2 * 25 * RS232_BIT_TICKS)
214218 begin
215- `ASSERT(rx_err, 1'b0 )
219+ // `ASSERT(rx_err, 1'b0)
216220 end
217221 if (counter == 2 * 26 * RS232_BIT_TICKS)
218222 begin
219223 rx_read <= 1 ;
220224 end
221225 if (counter == 2 * 26 * RS232_BIT_TICKS + 2 )
222226 begin
223- `ASSERT(rx_data, 8'b10010100 )
227+ // `ASSERT(rx_data, 8'b10010100)
224228 end
225229 if (counter == 2 * 26 * RS232_BIT_TICKS + 52 )
226230 begin
You can’t perform that action at this time.
0 commit comments