Skip to content

Commit 8ba1b97

Browse files
committed
Fix build
1 parent e362024 commit 8ba1b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: RCPU/emulator/cpu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def step(self):
3535
instruction = self.fetch()
3636
# Increments instruction pointer after fetch and
3737
# before execute, so JMP works properly
38-
self.registers.ip = (self.registers.ip + 1) % 0x10000
38+
self.registers.ip = (self.registers.ip + 1) % 0x10000
3939
opcode, arguments = self.decode(instruction)
4040
self.execute(opcode, arguments)
4141

0 commit comments

Comments
 (0)