diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-11-19 20:25:29 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-11-19 20:25:29 +0200 |
| commit | 910ad02d86672cc3020cc5df0fa451ef4dd69bfd (patch) | |
| tree | d5711894ee14c62caee8f8b744cac2d28f92c87b /tasm/src/lexer.l | |
| parent | 51789d2ed69515ab81bee6633bac3d94c519dc03 (diff) | |
| download | tri-910ad02d86672cc3020cc5df0fa451ef4dd69bfd.tar.gz tri-910ad02d86672cc3020cc5df0fa451ef4dd69bfd.zip | |
implement jalr
Diffstat (limited to 'tasm/src/lexer.l')
| -rw-r--r-- | tasm/src/lexer.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tasm/src/lexer.l b/tasm/src/lexer.l index 01a4bee..cf63cfe 100644 --- a/tasm/src/lexer.l +++ b/tasm/src/lexer.l @@ -181,6 +181,7 @@ str \"(\\.|[^"\\])*\" "pcall" {return pcall;} "fence" {return fence;} "nop" {return nop; /* meta */} +"mv" {return mv;} "li" {return li;} "la" {return la;} |
