Implemented OP_MSIZE into lexer/parser of ASM

This commit is contained in:
2023-11-01 21:47:19 +00:00
parent ea715c569e
commit 44125d7ad9
3 changed files with 12 additions and 1 deletions

View File

@@ -233,6 +233,9 @@ perr_t parse_next_inst(token_stream_t *stream, inst_t *ret)
case TOKEN_MDELETE:
ret->opcode = OP_MDELETE;
break;
case TOKEN_MSIZE:
ret->opcode = OP_MSIZE;
break;
case TOKEN_NOT:
ret->opcode = OP_NOT_BYTE;
return parse_utype_inst(stream, ret);