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 | 6c5b5d2b5771b3a4ddade9325c509bccb0c38c22 (patch) | |
tree | f80e1d0b2b81211dd8d9d56666cc830865993895 | |
parent | 70cf2554a17b604c5e65fd86ebaeb5d206839baa (diff) |
add two filler bytes to MapEventHeader asm output
-rw-r--r-- | extras/crystal.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 56d3d08b9..b7c59439a 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -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: |