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 08c4467..6b156b0 100644
--- a/gramar.y
+++ b/gramar.y
@@ -65,7 +65,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 IFB IFC IFE IFN IFG IFA IFL IFU ADX SUX
+%token IFB IFC IFE IFN IFG IFA IFL IFU ADX SBX
%token NOP BRK DAT ORG
%token JSR INT IAG IAS HWN HWQ HWI
%token LBR RBR LBRACE RBRACE LPAR RPAR
@@ -226,7 +226,7 @@ opcode
| IFL { $$ = 0x16; }
| IFU { $$ = 0x17; }
| ADX { $$ = 0x1a; }
- | SUX { $$ = 0x1b; }
+ | SBX { $$ = 0x1b; }
;
extended