undar-lang/vm/vm.c

7 lines
70 B
C

#include "vm.h"
bool step_vm(VM *vm) {
USED(vm);
return false;
}