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