mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2024-11-24 21:34:16 +00:00
Revert to old FSB DTACK/VPA control
This commit is contained in:
parent
8e40091786
commit
2912399c2e
@ -22,13 +22,10 @@ module FSB(
|
||||
(RAMCS && !QoSEN && RAMReady && IOPWCS && IOPWReady) ||
|
||||
(ROMCS && !QoSEN) ||
|
||||
(IONPReady && SndQoSReady);
|
||||
always @(posedge FCLK, posedge nAS) begin
|
||||
if (nAS) nDTACK <= 1;
|
||||
else nDTACK <= !(Ready && !IACS);
|
||||
end
|
||||
always @(posedge FCLK) nDTACK <= !(Ready && BACT && !IACS);
|
||||
always @(posedge FCLK, posedge nAS) begin
|
||||
if (nAS) nVPA <= 1;
|
||||
else nVPA <= !(Ready && IACS);
|
||||
else nVPA <= !(Ready && BACT && IACS);
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
Loading…
Reference in New Issue
Block a user