Mon 16 Mar 11:09:06 CET 2026

This commit is contained in:
sbosse 2026-03-16 11:10:12 +01:00
parent 9daf282626
commit 0b0de734f3

13
src/debug.h Normal file
View File

@ -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