kidmirage / KENBAK-2-5-Build-Files

For the 2:5 Scale KENBAK-1 Personal Computer Reproduction

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error with memory lookup in process_set

rlstrand opened this issue · comments

These:
updateByte = memory[memory[PC+1]]
memory[memory[PC+1]] = updateByte

Should be:

updateByte = memory[memory[memory[PC]+1]]
memory[memory[memory[PC]+1]] = updateByte

Fixed.