]> Shamusworld >> Repos - rmac/blob - object.h
Misc. whitespace cleanups, removal of unneeded 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 // Size of BSD header
13 #define BSDHDRSIZE   0x20
14
15 // Globals, externals, etc.
16 extern char * objImage;
17
18 // Exported functions
19 int WriteObject(int);
20
21 #endif // __OBJECT_H__
22