From 028574d142863d1ecd8497d9864fbcac37e94b0e Mon Sep 17 00:00:00 2001 From: Luigi Thirty Date: Sun, 23 Jul 2017 20:40:59 -0400 Subject: [PATCH] typo --- FruitMachine/M6502/Opcodes.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FruitMachine/M6502/Opcodes.swift b/FruitMachine/M6502/Opcodes.swift index 30672e6..67bbe2d 100644 --- a/FruitMachine/M6502/Opcodes.swift +++ b/FruitMachine/M6502/Opcodes.swift @@ -47,7 +47,7 @@ extension CPUState { page_boundary_crossed = true } } else { - if((program_counter & 0x00FF) + UInt16(abs(Int16(distance)))ß > 0x0100) { + if((program_counter & 0x00FF) + UInt16(abs(Int16(distance))) > 0x0100) { page_boundary_crossed = true } }