diff options
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 |