15 lines
142 B
Plaintext
15 lines
142 B
Plaintext
#ifndef VM_INCLUDED
|
|
#define VM_INLCUDED
|
|
|
|
#include "chunk.h"
|
|
|
|
|
|
typedef struct {
|
|
Chunk *chunk;
|
|
} VM;
|
|
|
|
void initVM();
|
|
void freeVM();
|
|
|
|
#endif
|