mirror of
https://github.com/softwarejanitor/as65.git
synced 2025-08-08 19:25:11 +00:00
Fixed bug in Indirect Zero Page
This commit is contained in:
2
as65.pl
2
as65.pl
@@ -1674,7 +1674,6 @@ sub is_Indirect_Zero_Page {
|
||||
} else {
|
||||
return 0 unless $symval =~ /^\$[0-9a-fA-F][0-9a-fA-F]$/;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
return 2;
|
||||
} elsif ($operand =~ /^\(([A-Za-z\.][A-Za-z0-9_\.]+)\s*[+-]\s*(\d+)\)$/) {
|
||||
@@ -1686,7 +1685,6 @@ sub is_Indirect_Zero_Page {
|
||||
} else {
|
||||
return 0 unless $symval =~ /^\$[0-9a-fA-F][0-9a-fA-F]$/;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
return 2;
|
||||
}
|
||||
|
Reference in New Issue
Block a user