mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-18 16:25:05 +08:00
rdfload: make the base addresses unsigned
Make the base addresses in rdfload unsigned. Note: this file is really obsolete; it can't represent RDF2 with more than the 3 old-style segments. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
6c98ca4ddc
commit
099f05dce4
@ -19,9 +19,9 @@
|
||||
typedef struct RDFModuleStruct {
|
||||
rdffile f; /* file structure */
|
||||
uint8_t *t, *d, *b; /* text, data, and bss segments */
|
||||
int32_t textrel;
|
||||
int32_t datarel;
|
||||
int32_t bssrel;
|
||||
uint32_t textrel;
|
||||
uint32_t datarel;
|
||||
uint32_t bssrel;
|
||||
void *symtab;
|
||||
} rdfmodule;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user