mirror of
https://github.com/softwarejanitor/as65.git
synced 2025-01-16 03:30:10 +00:00
Allow * in first column as comment (SC assembler)
This commit is contained in:
parent
9900d41517
commit
0deb732a07
2
as65.pl
2
as65.pl
@ -2003,6 +2003,7 @@ if (open($ifh, "<$input_file")) {
|
||||
|
||||
# Skip comment lines.
|
||||
next if $line =~ /^\s*;/;
|
||||
next if $line =~ /\*/;
|
||||
|
||||
# Process .org lines.
|
||||
if ($line =~ /^\.org\s+(.+)/) {
|
||||
@ -2110,6 +2111,7 @@ if (open($ifh, "<$input_file")) {
|
||||
|
||||
# Skip comment lines.
|
||||
next if $line =~ /^\s*;/;
|
||||
next if $line =~ /\*/;
|
||||
|
||||
# Skip .org lines.
|
||||
next if $line =~ /^\.org\s+.+/;
|
||||
|
Loading…
x
Reference in New Issue
Block a user