summaryrefslogtreecommitdiff
path: root/crystal.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-04-20 17:57:59 -0500
committerBryan Bishop <kanzure@gmail.com>2012-04-20 17:57:59 -0500
commit9b832c0012f9ff817145e0264dea88d5d9099ef2 (patch)
tree21cb9692a2e0a976ce04719fb756522b1e1a42c4 /crystal.py
parent324e68af7cb8688d96f77f765b436cb20744a35e (diff)
improvements to global to_asm
original-commit-id: a8da5fbda9be62bc1786954f9e62f3957c1764ed
Diffstat (limited to 'crystal.py')
-rw-r--r--crystal.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/crystal.py b/crystal.py
index 30d73cc..dae8dc3 100644
--- a/crystal.py
+++ b/crystal.py
@@ -4036,11 +4036,18 @@ incbin_lines = []
processed_incbins = {}
def to_asm(some_object):
- """shows asm with labels and ending comments"""
- #label: ; 0x10101
+ """shows an object's asm with a label and an ending comment
+ showing the next byte address"""
+ if isinstance(some_object, int):
+ some_object = script_parse_table[some_object]
+ #add one to the last_address to show where the next byte is in the file
+ last_address = some_object.last_address + 1
+ #create a line like "label: ; 0x10101"
asm = some_object.label + ": ; " + hex(some_object.address) + "\n"
+ #now add the inner/actual asm
asm += spacing + some_object.to_asm().replace("\n", "\n"+spacing).replace("\n"+spacing+"\n"+spacing, "\n\n"+spacing)
- asm += "\n; " + hex(some_object.last_address)
+ #show the address of the next byte below this
+ asm += "\n; " + hex(last_address)
return asm
def isolate_incbins():