summaryrefslogtreecommitdiff
path: root/crystal.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-04-26 14:37:09 -0500
committerBryan Bishop <kanzure@gmail.com>2012-04-26 14:37:09 -0500
commit16a55de2c8835e3f45c491c7dd95caf0aa9e1c0e (patch)
treeb960baf51c38e982bc8317e5e6389d932c3232e0 /crystal.py
parent28a40fac1e9006d7439339772650bd80f4ca3e35 (diff)
revert '_' prefix to some macro_names
original-commit-id: 386a688eca4098723e6e8460257433064cdd86ee
Diffstat (limited to 'crystal.py')
-rw-r--r--crystal.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/crystal.py b/crystal.py
index 855547f..26b1d5d 100644
--- a/crystal.py
+++ b/crystal.py
@@ -1501,8 +1501,8 @@ class Command:
def to_asm(self):
#start with the rgbasm macro name for this command
output = ""
- if len(self.macro_name) > 0 and self.macro_name[0].isdigit():
- output += "_"
+ #if len(self.macro_name) > 0 and self.macro_name[0].isdigit():
+ # output += "_"
output += self.macro_name
#return if there are no params
if len(self.param_types.keys()) == 0: return output
@@ -1835,8 +1835,8 @@ def generate_macros(filename="../script_macros.asm"):
output = "; This file is generated by generate_macros.\n"
for command in command_classes:
output += "\n"
- if command.macro_name[0].isdigit():
- output += "_"
+ #if command.macro_name[0].isdigit():
+ # output += "_"
output += command.macro_name + ": MACRO\n"
output += spacing + "db $%.2x\n"%(command.id)
current_param = 1