mirror of
https://github.com/softwarejanitor/da65.git
synced 2024-12-22 09:31:10 +00:00
Fixed bugs in AND
This commit is contained in:
parent
b6238c8cc2
commit
406a34fcc4
4
da65.pl
4
da65.pl
@ -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'
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user