Implement more CPU instructions

This commit is contained in:
Michael Smith
2025-08-30 13:19:07 +02:00
parent 772ff893af
commit 7c494acc7e
3 changed files with 252 additions and 28 deletions

View File

@@ -29,5 +29,6 @@ func main() {
running := true
for running {
console.CPU.Step()
running = !console.CPU.Halted
}
}