14 lines
285 B
C
14 lines
285 B
C
#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
|