Fixed bugs in AND

This commit is contained in:
Leeland Heins 2018-12-18 08:58:00 -06:00 committed by GitHub
parent b6238c8cc2
commit 406a34fcc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -90,12 +90,12 @@ my %opcodes = (
'mnemonic' => 'AND'
},
# (Zero Page,X) AND (Zpg,X) 21 2 6
0x31 => {
0x21 => {
'modesub' => \&mode_Indirect_Zero_Page_X,
'mnemonic' => 'AND'
},
# (Zero Page),Y AND (Zpg),Y 31 2 5
0x32 => {
0x31 => {
'modesub' => \&mode_Indirect_Zero_Page_Y,
'mnemonic' => 'AND'
},