Some watchdog basics

This commit is contained in:
Darkress
2023-06-17 20:05:58 +02:00
parent f2423d0d71
commit 2b1f8871d2
5 changed files with 59 additions and 14 deletions

View File

@@ -36,4 +36,9 @@ public class ProgramCounter
pc++;
Memory.setPCL(pc & 0x00FF);
}
public static void resetProgramCounter() {
pc = 0;
Memory.setPCL(0x0);
}
}