Merge pull request #65 from yenatch/rgbasm-equs

preprocessor: rgbasm "EQUS" takes string literals
This commit is contained in:
Bryan Bishop 2014-01-22 07:12:22 -08:00
commit 61b83803be

View File

@ -523,7 +523,7 @@ class Preprocessor(object):
sys.stdout.write(asm)
# convert text to bytes when a quote appears (not in a comment)
elif "\"" in asm:
elif "\"" in asm and "EQUS" not in asm:
sys.stdout.write(quote_translator(asm))
# check against other preprocessor features