Initial commit

This commit is contained in:
2020-10-28 00:16:30 -05:00
commit 2e1b745624
34 changed files with 3540 additions and 0 deletions

9
src/cdebug.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef CDEBUG_H
#define CDEBUG_H
#include "cchunk.h"
COSMO_API void disasmChunk(CChunk *chunk, const char *name, int indent);
COSMO_API int disasmInstr(CChunk *chunk, int offset, int indent);
#endif