Change ready behavior during sound slowdown

This commit is contained in:
Zane Kaminski 2023-04-09 22:47:45 -04:00
parent 59136e4e17
commit 67b062c37d
1 changed files with 3 additions and 4 deletions

View File

@ -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;