Skip to content

Commit d4e2de8

Browse files
committed
Force ACIA Rx pushback to check Image3.0, likely reintroduces ATZ loop in CBASE
1 parent 6e96cbe commit d4e2de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fpga/io/acia/vhdl_source/acia6551.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ begin
194194
tx_pending <= '1';
195195
tx_presc <= "111";
196196
-- For receive, DTR should be active
197-
elsif dtr = '1' and rx_head /= rx_tail and b_pending = '0' and rx_presc = "000" then
197+
elsif rx_full = '0' and dtr = '1' and rx_head /= rx_tail and b_pending = '0' and rx_presc = "000" then
198198
b_address <= '1' & rx_tail;
199199
b_en <= '1';
200200
b_pending <= '1';

0 commit comments

Comments
 (0)