aboutsummaryrefslogtreecommitdiff
path: root/gramar.y
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2012-04-25 23:19:58 +0000
committerDimitri Sokolyuk <demon@dim13.org>2012-04-25 23:19:58 +0000
commit9fe4b4f26402142dbe812d61107bb1a0668a9450 (patch)
tree2b9b4f87db19bace6d735c5b9a8d1c6b386d15d2 /gramar.y
parented10b69ca911f2274ef4322c8d9148857d08f03e (diff)
spec 1.4 mvi -> sti
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; }