2013-05-16 23:03:38 +00:00
|
|
|
/*
|
|
|
|
* VideoCore IV assembler for the ACK
|
|
|
|
* © 2013 David Given
|
|
|
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
|
|
|
* See the file 'Copying' in the root of the distribution for the full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
%token <y_word> GPR
|
2013-05-17 22:30:49 +00:00
|
|
|
%token <y_word> CC
|
2013-05-16 23:03:38 +00:00
|
|
|
|
|
|
|
%token <y_word> OP
|
2013-05-19 17:40:19 +00:00
|
|
|
%token <y_word> OP_BRANCH OP_BRANCHLINK OP_ADDCMPB
|
2013-05-16 23:03:38 +00:00
|
|
|
%token <y_word> OP_ONEREG
|
|
|
|
%token <y_word> OP_ONELREG
|
|
|
|
%token <y_word> OP_ALU
|
2013-05-17 22:30:49 +00:00
|
|
|
%token <y_word> OP_FPU
|
2013-05-16 23:03:38 +00:00
|
|
|
%token <y_word> OP_MEM
|
2013-05-17 22:30:49 +00:00
|
|
|
%token <y_word> OP_MISC
|
|
|
|
%token <y_word> OP_MISCL
|
2013-07-01 12:05:36 +00:00
|
|
|
%token <y_word> OP_FLTCNV
|
2013-05-16 23:03:38 +00:00
|
|
|
%token <y_word> OP_STACK
|
2013-05-20 18:56:33 +00:00
|
|
|
%token <y_word> OP_LEA
|
2013-05-16 23:03:38 +00:00
|
|
|
|
|
|
|
|