diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-26 14:26:16 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-26 14:26:16 -0500 |
commit | 712b7a57ac4225b4b9eebb144d636f7d85c0bcae (patch) | |
tree | ad2a9e214a0da022c2ae1cc9d627f147d2ae78f8 /crystal.py | |
parent | 98d72a999f71e6a77bd9e6ef3df54adb1ae6cf84 (diff) |
add two filler bytes to MapEventHeader asm output
original-commit-id: 6c5b5d2b5771b3a4ddade9325c509bccb0c38c22
Diffstat (limited to 'crystal.py')
-rw-r--r-- | crystal.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3257,7 +3257,9 @@ class MapEventHeader: def to_asm(self): xspacing = "" #was =spacing - output = "" + output = "; filler\n" + output += "db %d, %d\n\n" % (self.fillers[0], self.fillers[1]) + output += xspacing + "; warps\n" output += xspacing + "db %d"%(self.warp_count) if len(self.warps) > 0: |