]> Shamusworld >> Repos - rmac/blob - object.h
Initial commit.
[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 #ifndef __OBJECT_H__
9 #define __OBJECT_H__
10
11 #include "rmac.h"
12
13 #define BSDHDRSIZE   0x20                                   // Size of BSD header
14
15 // Globals, externals etc
16 extern char *objimage;
17
18 // Prototypes
19 int object(WORD);
20
21 #endif // __OBJECT_H__