Revision 380
Added by markw about 10 years ago
common/a8core/address_decoder.vhdl | ||
---|---|---|
state_next <= state_waiting_antic;
|
||
end if;
|
||
antic_fetch_real_next <= '1';
|
||
cpu_fetch_real_next <= '0';
|
||
when "010"|"011" => -- DMA wins (DMA usually accesses own ROM memory - this is NOT a DMA_fetch)
|
||
-- TODO, lower priority than 6502, except on first request in block...
|
||
start_request <= '1';
|
||
... | ... | |
state_next <= state_waiting_cpu;
|
||
end if;
|
||
cpu_fetch_real_next <= '1';
|
||
antic_fetch_real_next <= '0';
|
||
when "000" =>
|
||
-- no requests
|
||
when others =>
|
Also available in: Unified diff
Fixed antic seperate bank switching