From 090f4bd6a9a67b659a222c2889bba7da72d0c28a Mon Sep 17 00:00:00 2001 From: Leeland Heins Date: Tue, 18 Dec 2018 10:11:31 -0600 Subject: [PATCH] Fixed bugs in a couple of opcodes --- da65.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/da65.pl b/da65.pl index cdaaaec..bdaf3a2 100644 --- a/da65.pl +++ b/da65.pl @@ -216,12 +216,12 @@ my %opcodes = ( 'mnemonic' => 'BCC' }, # BCS Relative BCS Oper B0 2 2 - 0xB0 => { + 0xb0 => { 'modesub' => \&mode_Relative, 'mnemonic' => 'BCS' }, # BEQ Relative BEQ Oper F0 2 2 - 0xF0 => { + 0xf0 => { 'modesub' => \&mode_Relative, 'mnemonic' => 'BEQ' }, @@ -749,7 +749,7 @@ my %opcodes = ( 'operand' => 'A' }, # Zero Page ROR Zpg 66 2 5 - 0x6a => { + 0x66 => { 'modesub' => \&mode_Zero_Page, 'mnemonic' => 'ROR' },