11 lines
184 B
C
11 lines
184 B
C
|
#ifndef DEBUG_INCLUDED
|
||
|
#define DEBUG_INCLUDED
|
||
|
|
||
|
#include "chunk.h"
|
||
|
|
||
|
void disassembleChunk(Chunk *chunk,const char* name);
|
||
|
int disassembleInstruction(Chunk *chunk, int offset);
|
||
|
|
||
|
|
||
|
#endif
|