Skip to content

Commit

Permalink
[logisim-cdm-emulator] Change initial clock state value to UNKNOWN
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelix8996 committed Jul 24, 2024
1 parent caa71ab commit eb92954
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import com.cburch.logisim.data.Value;

public class ProcessorClockState {
private Value lastClock = Value.FALSE;
private Value currentClock = Value.FALSE;
private Value lastClock = Value.UNKNOWN;
private Value currentClock = Value.UNKNOWN;

public void update(Value newClock) {
lastClock = currentClock;
Expand Down

0 comments on commit eb92954

Please sign in to comment.