mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-04-21 07:57:13 -05:00
update to_asm on MapHeader to use the BANK macro
original-commit-id: a9b0eb4d87410f453c2135092ef2f810845b746a
This commit is contained in:
parent
3528fd881b
commit
ac230bdee9
|
|
@ -4760,7 +4760,7 @@ class MapHeader:
|
|||
|
||||
def to_asm(self):
|
||||
output = "; bank, tileset, permission\n"
|
||||
output += "db " + ", ".join([self.bank.to_asm(), self.tileset.to_asm(), self.permission.to_asm()])
|
||||
output += "db " + ", ".join(["BANK(" + self.second_map_header.label.name + ")", self.tileset.to_asm(), self.permission.to_asm()])
|
||||
output += "\n\n; second map header\n"
|
||||
output += "dw " + PointerLabelParam(address=self.address+3).to_asm() #TODO: should we include bank=self.bank.byte ??
|
||||
output += "\n\n; location on world map, music, time of day, fishing group\n"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user