create LST ins to support list init

This commit is contained in:
lyon1998 2022-04-13 19:37:43 +08:00
parent b42c8c1e6a
commit 8e598986cd
2 changed files with 5 additions and 0 deletions

View File

@ -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;

View File

@ -47,3 +47,4 @@ def_ins(GLB)
def_ins(RAS)
def_ins(NEW)
def_ins(CLS)
def_ins(LST)