0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-10-10 00:25:06 -04:00

WIP: bin format improvements

- Remove linear lookups
- Enable output of relocations in the map file
- Other performance fixes

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin (Intel)
2025-10-07 14:43:35 -07:00
parent c651c28217
commit 31c368ec4b
4 changed files with 101 additions and 57 deletions

View File

@@ -19,3 +19,8 @@ int32_t seg_alloc(void)
next_seg += 2;
return this_seg;
}
int32_t seg_maxindex(void)
{
return next_seg;
}