aboutsummaryrefslogtreecommitdiff
path: root/asm/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'asm/parser.c')
-rw-r--r--asm/parser.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/asm/parser.c b/asm/parser.c
index a7340f9..73cd7be 100644
--- a/asm/parser.c
+++ b/asm/parser.c
@@ -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);