]> Shamusworld >> Repos - rmac/blob - debug.h
When an error occurs inside a macro or rept, report the exact line, not the line...
[rmac] / debug.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // DEBUG.H - Debugging Messages
4 // Copyright (C) 199x Landon Dyer, 2011-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 __DEBUG_H__
10 #define __DEBUG_H__
11
12 #include "rmac.h"
13
14 // Exported functions
15 int mudump(void);
16 int mdump(char *, LONG, int, LONG);
17 int dumptok(TOKEN *);
18 void DumpTokens(TOKEN *);
19 int dump_everything(void);
20
21 #endif // __DEBUG_H__
22