Fix /VMA setup time before E clock

This commit is contained in:
Zane Kaminski 2024-10-06 23:07:36 -04:00
parent 2912399c2e
commit 2a69312ba4

View File

@ -32,7 +32,7 @@ module IOBM(
/* ETACK and VMA generation */
wire ETACK = (ES==8) && !nVMA;
always @(posedge C8M) begin
if ((ES==5) && IOACT && VPAr) nVMA <= 0;
if ((ES==4) && IOACT && VPAr) nVMA <= 0;
else if(ES==0) nVMA <= 1;
end