preprocessor: rgbasm "EQUS" takes string literals

This commit is contained in:
yenatch 2014-01-19 19:36:45 -05:00
parent d8f4e687eb
commit 89ca24a934

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