Get rid of magic open-coded "register numbers"
[nasm.git] / rdoff / rdfload.h
blob5e6ffba8cba66e5eef8422b51ab08902742c0859
1 /* rdfload.h RDOFF Object File loader library header file
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the licence given in the file "Licence"
6 * distributed in the NASM archive.
8 * See the file 'rdfload.c' for special license information for this
9 * file.
12 #ifndef RDOFF_RDFLOAD_H
13 #define RDOFF_RDFLOAD_H 1
15 #define RDOFF_UTILS
17 #include "rdoff.h"
19 typedef struct RDFModuleStruct {
20 rdffile f; /* file structure */
21 uint8_t *t, *d, *b; /* text, data, and bss segments */
22 int32_t textrel;
23 int32_t datarel;
24 int32_t bssrel;
25 void *symtab;
26 } rdfmodule;
28 rdfmodule *rdfload(const char *filename);
29 int rdf_relocate(rdfmodule * m);
31 #endif