diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/map2link.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/map2link.py b/tools/map2link.py index 53f0836..f78e46f 100644 --- a/tools/map2link.py +++ b/tools/map2link.py @@ -177,6 +177,7 @@ def main(): start = bank.start for section in sections: 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) start = section.end |