diff options
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preprocessor.py b/preprocessor.py index 468ae41a5..242732094 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -579,7 +579,7 @@ def read_line(l): # export all labels if ':' in asm[:asm.find('"')]: - sys.stdout.write('GLOBAL ' + asm.split(':')[0] + '\n') + sys.stdout.write('GLOBAL ' + asm.split(':')[0] + '\n') # expect preprocessed .asm files if "INCLUDE" in asm: |