13 lines
291 B
C
13 lines
291 B
C
#ifndef ZRE_VM_H
|
|
#define ZRE_VM_H
|
|
|
|
#include "opcodes.h"
|
|
|
|
bool step_vm(VM *vm);
|
|
u32 str_alloc(VM *vm, Frame *frame, const char *str, u32 length);
|
|
void fixed_to_string(i32 value, char *buffer);
|
|
void int_to_string(i32 value, char *buffer);
|
|
void uint_to_string(u32 value, char *buffer);
|
|
|
|
#endif
|