mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2025-02-16 16:30:29 +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 */
|
/* DTACK/VPA control */
|
||||||
wire Ready = QoSReady &&
|
wire Ready = (QoSReady && RAMCS && RAMReady && !IOPWCS) ||
|
||||||
((RAMCS && RAMReady && !IOPWCS) ||
|
(QoSReady && RAMCS && RAMReady && IOPWCS && IOPWReady) ||
|
||||||
(RAMCS && RAMReady && IOPWCS && IOPWReady) ||
|
(QoSReady && ROMCS) || (IONPReady);
|
||||||
(ROMCS) || (IONPReady));
|
|
||||||
always @(posedge FCLK) nDTACK <= !(Ready && BACT && !IACS);
|
always @(posedge FCLK) nDTACK <= !(Ready && BACT && !IACS);
|
||||||
always @(posedge FCLK, posedge nAS) begin
|
always @(posedge FCLK, posedge nAS) begin
|
||||||
if (nAS) nVPA <= 1;
|
if (nAS) nVPA <= 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user