From 77a87388d549b7e6c6bc9ccf2685de194d721b68 Mon Sep 17 00:00:00 2001 From: Leeland Heins Date: Tue, 18 Dec 2018 09:25:21 -0600 Subject: [PATCH] Fixed bugs in CLI & CLV --- da65.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/da65.pl b/da65.pl index 524baf3..cdaaaec 100644 --- a/da65.pl +++ b/da65.pl @@ -296,12 +296,12 @@ my %opcodes = ( 'mnemonic' => 'CLD' }, # CLI Implied CLI 58 1 2 - 0xd5 => { + 0x58 => { 'modesub' => \&mode_Implied, 'mnemonic' => 'CLI' }, # CLV Implied CLV B8 1 2 - 0xb5 => { + 0xb8 => { 'modesub' => \&mode_Implied, 'mnemonic' => 'CLV' },