diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-11 11:25:14 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-11 11:25:14 -0400 |
commit | 8f9ee9325fb7df11e8c97668a670f51e3e10574f (patch) | |
tree | 998683bf9d7ffcf3afc94a232ee8b60d4bcb89b6 /tools | |
parent | 69d6b38f0ba52ee14b3de9aa926e38e400e03d78 (diff) |
More functions putatively related to the map and overworld
Diffstat (limited to 'tools')
-rw-r--r-- | tools/map2link.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/map2link.py b/tools/map2link.py index f78e46f..f1cd3a3 100644 --- a/tools/map2link.py +++ b/tools/map2link.py @@ -179,7 +179,7 @@ def main(): if section.start > start: print(f'\t; ${start:04x}', file=args.linkfile) print(f'\torg ${section.start:04x}', file=args.linkfile) - print(f'\t"{section.name}" ; size: ${section.size:04x}', file=args.linkfile) + print(f'\t"{section.name}" ; ${section.start:04x}, size: ${section.size:04x}', file=args.linkfile) start = section.end |