mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
make the include macro check better
The include macro is now checked against only the beginning of the line, and comments in the asm file can say "INCLUDE \"" if they need to. In addition, the preprocessor now supports INCLUDE lines that are preceded by a tab character. However, if this included file has multiple lines, the output will not be automatically aligned with the initial tab. This might cause problems with rgbasm.
This commit is contained in:
parent
1e6f295573
commit
44c3eb1ccf
@ -559,8 +559,9 @@ def read_line(l):
|
|||||||
asm = l
|
asm = l
|
||||||
comment = None
|
comment = None
|
||||||
|
|
||||||
# handle INCLUDE as a special case
|
# handle INCLUDE as a special case either at the start of the line or
|
||||||
if "INCLUDE \"" in asm:
|
# after the first character in the line (like a tab)
|
||||||
|
if "INCLUDE \"" in [asm[0:9], asm[1:9]]:
|
||||||
include_file(asm)
|
include_file(asm)
|
||||||
|
|
||||||
# convert text to bytes when a quote appears (not in a comment)
|
# convert text to bytes when a quote appears (not in a comment)
|
||||||
|
Loading…
Reference in New Issue
Block a user