diff --git a/src/debug.h b/src/debug.h new file mode 100644 index 0000000..094ca9e --- /dev/null +++ b/src/debug.h @@ -0,0 +1,13 @@ +#ifndef _DEBUG_H +#define _DEBUG_H + +int CountCode(mem_t *M); +void PrintOp(op_t *,address_t addr); +int PrintCode(mem_t *); +void PrintEvents(events_t *E); +void PrintHeap(mem_t *); +void PrintLexerToken(lexer_t *); +void PrintStack(char *label,stack_t *); +void PrintState(reg_t *R); + +#endif