mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2024-11-22 08:32:09 +00:00
Change ready behavior during sound slowdown
This commit is contained in:
parent
59136e4e17
commit
67b062c37d
@ -18,10 +18,9 @@ module FSB(
|
||||
|
||||
|
||||
/* DTACK/VPA control */
|
||||
wire Ready = QoSReady &&
|
||||
((RAMCS && RAMReady && !IOPWCS) ||
|
||||
(RAMCS && RAMReady && IOPWCS && IOPWReady) ||
|
||||
(ROMCS) || (IONPReady));
|
||||
wire Ready = (QoSReady && RAMCS && RAMReady && !IOPWCS) ||
|
||||
(QoSReady && RAMCS && RAMReady && IOPWCS && IOPWReady) ||
|
||||
(QoSReady && ROMCS) || (IONPReady);
|
||||
always @(posedge FCLK) nDTACK <= !(Ready && BACT && !IACS);
|
||||
always @(posedge FCLK, posedge nAS) begin
|
||||
if (nAS) nVPA <= 1;
|
||||
|
Loading…
Reference in New Issue
Block a user