]> Shamusworld >> Repos - rmac/blob - object.h
When selecting ST .o output (-fa), don't write a .prg but an object file instead.
[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