started op table

This commit is contained in:
radumaco
2025-04-19 22:26:59 +02:00
parent d26e6b7436
commit 28243ac5d5
11 changed files with 246 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ func main() {
data, err := os.ReadFile(os.Args[1])
check(err)
startMem := 1000
startMem := uint(1000)
memory.WriteAll(startMem, data)
cpu.Execute(startMem)
}