mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
disable '; original line' by default
This commit is contained in:
parent
f558edafff
commit
662f442221
@ -32,6 +32,9 @@ macros = command_classes + \
|
|||||||
movement_command_classes + \
|
movement_command_classes + \
|
||||||
music_classes
|
music_classes
|
||||||
|
|
||||||
|
# show lines before preprocessing in stdout
|
||||||
|
show_original_lines = False
|
||||||
|
|
||||||
chars = {
|
chars = {
|
||||||
"ガ": 0x05,
|
"ガ": 0x05,
|
||||||
"ギ": 0x06,
|
"ギ": 0x06,
|
||||||
@ -445,7 +448,8 @@ def macro_translator(macro, token, line):
|
|||||||
raise Exception, "macro has no params?"
|
raise Exception, "macro has no params?"
|
||||||
|
|
||||||
# write out a comment showing the original line
|
# write out a comment showing the original line
|
||||||
sys.stdout.write("; original_line: " + original_line)
|
if show_original_lines:
|
||||||
|
sys.stdout.write("; original_line: " + original_line)
|
||||||
|
|
||||||
# "db" is a macro because of TextEndingCommand
|
# "db" is a macro because of TextEndingCommand
|
||||||
# rgbasm can handle "db" so no preprocessing is required
|
# rgbasm can handle "db" so no preprocessing is required
|
||||||
|
Loading…
Reference in New Issue
Block a user