diff --git a/src/PikaVM.c b/src/PikaVM.c index cf3889594..e3d4b5400 100644 --- a/src/PikaVM.c +++ b/src/PikaVM.c @@ -278,6 +278,10 @@ exit: strsDeinit(&buffs); } +static Arg* VM_instruction_handler_LST(PikaObj* self, VMState* vs, char* data) { + return NULL; +} + static Arg* VM_instruction_handler_RUN(PikaObj* self, VMState* vs, char* data) { Args buffs = {0}; Arg* return_arg = NULL; diff --git a/src/__instruction_table.cfg b/src/__instruction_table.cfg index 8ffca1c4f..e2b3e70f1 100644 --- a/src/__instruction_table.cfg +++ b/src/__instruction_table.cfg @@ -47,3 +47,4 @@ def_ins(GLB) def_ins(RAS) def_ins(NEW) def_ins(CLS) +def_ins(LST)