Skip to content

Commit

Permalink
[cocoemu] Add missing latches to reset() of CdM-16/e
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelix8996 committed Aug 26, 2024
1 parent bad11ba commit 7850163
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ public void reset() {

startupLatch.set();

virtualInstructionLatch.reset();
exceptionLatch.reset();
busController.reset();

holdLatch.reset();
waitLatch.reset();
haltLatch.reset();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,8 @@ public BusControllerOutputParameters update(BusControllerInputParameters paramet
clk_inhibit
);
}

public void reset() {
incAddressLatch.reset();
}
}

0 comments on commit 7850163

Please sign in to comment.