diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-11-02 10:46:30 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-11-02 10:46:30 +0100 |
commit | 1eaeccc15d15d15d2f62ea1648f7dd64722dbd37 (patch) | |
tree | b922cdabc780fa3a8837a6804d2df31793d9e2ca /tinyc/coff.h | |
parent | e9243a16167b24899d4fcf051f3252b3a5804811 (diff) | |
parent | bd19b5f4d36bb40b4af93d7e15fdfa582e9fe3b7 (diff) | |
download | Nim-1eaeccc15d15d15d2f62ea1648f7dd64722dbd37.tar.gz |
Merge branch 'devel' into araq
Diffstat (limited to 'tinyc/coff.h')
-rw-r--r-- | tinyc/coff.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tinyc/coff.h b/tinyc/coff.h index 38960b40f..e8e6185a6 100644 --- a/tinyc/coff.h +++ b/tinyc/coff.h @@ -22,7 +22,7 @@ struct filehdr { /*------------------------------------------------------------------------*/ #define F_RELFLG 0x01 /* relocation info stripped from file */ #define F_EXEC 0x02 /* file is executable (no unresolved refs) */ -#define F_LNNO 0x04 /* line nunbers stripped from file */ +#define F_LNNO 0x04 /* line numbers stripped from file */ #define F_LSYMS 0x08 /* local symbols stripped from file */ #define F_GSP10 0x10 /* 34010 version */ #define F_GSP20 0x20 /* 34020 version */ @@ -37,8 +37,8 @@ struct filehdr { #define F_BYTE_ORDER (F_LITTLE | F_BIG) #define FILHDR struct filehdr -//#define FILHSZ sizeof(FILHDR) -#define FILHSZ 22 // above rounds to align on 4 bytes which causes problems +/* #define FILHSZ sizeof(FILHDR) */ +#define FILHSZ 22 /* above rounds to align on 4 bytes which causes problems */ #define COFF_C67_MAGIC 0x00c2 @@ -150,7 +150,7 @@ struct scnhdr { /*------------------------------------------------------------------------*/ /* Define constants for names of "special" sections */ /*------------------------------------------------------------------------*/ -//#define _TEXT ".text" +/* #define _TEXT ".text" */ #define _DATA ".data" #define _BSS ".bss" #define _CINIT ".cinit" |