Startup sequence rewritten for shorter LTimer period

This commit is contained in:
Zane Kaminski 2024-11-04 19:21:05 -05:00
parent c4d28b3dee
commit 04b7cde054

View File

@ -154,10 +154,12 @@ module CNT(
end 2: begin
AoutOE <= 0;
nRESout <= 0;
if (!nIPL2) nBR_IOB <= 1; // Disable bus request if NMI pressed
if (LTimerTick && !nIPL2) nBR_IOB <= 1; // Disable bus request if NMI pressed
end 3: begin
AoutOE <= !nBR_IOB;
if (LTimerTick) nRESout <= 1; // Release reset after a while
if (LTimerTick) begin
AoutOE <= !nBR_IOB;
nRESout <= 1; // Release reset after a while
end
end
endcase
end