]> Shamusworld >> Repos - rmac/blob - mark.h
Change extension to .prg when invoked with -p.
[rmac] / mark.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // MARK.H - A record of things that are defined relative to any of the sections
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 __MARK_H__
10 #define __MARK_H__
11
12 #include "rmac.h"
13 #include "sect.h"
14
15 #define MARK_ALLOC_INCR 1024            // # bytes to alloc for more mark space 
16 #define MIN_MARK_MEM    (3 * sizeof(WORD) + 2 * sizeof(LONG))
17
18 // Globals, externals, etc.
19 extern MCHUNK * firstmch;
20
21 // Exported functions
22 void InitMark(void);
23 void StopMark(void);
24 int rmark(uint16_t, uint32_t, uint16_t, uint16_t, SYM *);
25 int amark(void);
26 LONG bsdmarkimg(char *, LONG, LONG, int);
27
28 #endif // __MARK_H__
29