Fix IOPWReady timing

This commit is contained in:
Zane Kaminski 2023-04-07 05:59:01 -04:00
parent b8e6cb393d
commit 254b4ccf22
1 changed files with 3 additions and 2 deletions

View File

@ -136,8 +136,9 @@ module IOBS(
/* Posted ready */
always @(posedge CLK) begin
if (!BACT) IOPWReady <= 0;
else if (Clear1 || !ALE1) IOPWReady <= 1;
if (Clear1) IOPWReady <= 1;
else if (Load1) IOPWReady <= 0;
else IOPWReady <= !ALE;
end
/* BERR control */