]> Shamusworld >> Repos - rmac/blob - object.h
Fixed subtle bug in section marking code.
[rmac] / object.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // OBJECT.H - Writing Object Files
4 // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source Utilised with the Kind Permission of Landon Dyer
7 //
8
9 #ifndef __OBJECT_H__
10 #define __OBJECT_H__
11
12 #include "rmac.h"
13
14 #define BSDHDRSIZE   0x20                                   // Size of BSD header
15
16 // Globals, externals etc
17 extern char * objimage;
18
19 // Prototypes
20 int object(WORD);
21
22 #endif // __OBJECT_H__