]> Shamusworld >> Repos - rmac/blob - mach.h
Fixed code to remove warnings. Inching closer towards zero. :-)
[rmac] / mach.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // MACH.H - Code Generation
4 // Copyright (C) 199x Landon Dyer, 2017 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 __MACH_H__
10 #define __MACH_H__
11
12 #include "amode.h"
13
14 // Exported variables
15 extern char seg_error[];
16 extern char undef_error[];
17 extern char rel_error[];
18 extern char range_error[];
19 extern char abs_error[];
20 extern MNTAB machtab[];
21 extern int movep;
22
23 #endif // __MACH_H__
24