aboutsummaryrefslogtreecommitdiff
path: root/gramar.y
diff options
context:
space:
mode:
Diffstat (limited to 'gramar.y')
-rw-r--r--gramar.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/gramar.y b/gramar.y
index 6b156b0..1a40b44 100644
--- a/gramar.y
+++ b/gramar.y
@@ -64,7 +64,7 @@ struct label {
%token PUSH POP PEEK PICK SP PC EX
-%token SET ADD SUB MUL MLI DIV DVI MOD AND BOR XOR SHR ASR SHL MVI
+%token SET ADD SUB MUL MLI DIV DVI MOD AND BOR XOR SHR ASR SHL STI
%token IFB IFC IFE IFN IFG IFA IFL IFU ADX SBX
%token NOP BRK DAT ORG
%token JSR INT IAG IAS HWN HWQ HWI
@@ -216,7 +216,7 @@ opcode
| SHR { $$ = 0x0c; }
| ASR { $$ = 0x0d; }
| SHL { $$ = 0x0e; }
- | MVI { $$ = 0x0f; }
+ | STI { $$ = 0x0f; }
| IFB { $$ = 0x10; }
| IFC { $$ = 0x11; }
| IFE { $$ = 0x12; }