This commit is contained in:
Leeland Heins 2019-01-23 09:34:17 -06:00 committed by GitHub
parent 6b5812d327
commit b083cdf344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ my %opcodes = (
# (Zero Page) AND (Zpg) 32 2 5
0x32 => {
'modesub' => \&mode_Indirect_Zero_Page,
'mnemonic' => 'ADC'
'mnemonic' => 'AND'
},
# ASL Accumulator ASL A 0A 1 2
0x0a => {
@ -1197,7 +1197,7 @@ sub mode_Accumulator {
# Get the file size.
my $expected = -s $input_file;
my $fh,
my $fh;
my $buffer = '';
# Open the input file.