Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v102/as68/cout.lst
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

15 lines
640 B
Plaintext

1File: COUT.H Page 1
1 #define HDSIZE (sizeof couthd) /**.o file header size*/
2 struct hdr {
3 short ch_magic; /*c.out magic number 060016 = $600E*/
4 long ch_tsize; /*text size*/
5 long ch_dsize; /*data size*/
6 long ch_bsize; /*bss size*/
7 long ch_ssize; /*symbol table size*/
8 long ch_stksize; /*stack size*/
9 long ch_entry; /*entry point*/
10 short ch_rlbflg; /*relocation bits suppressed flag*/
11 } couthd;
12
13 #define MAGIC 0x601a /* bra .+26 instruction*/