plxvm/src/debug.h

14 lines
285 B
C
Raw Normal View History

2026-03-16 11:10:12 +01:00
#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