2018-09-01 17:35:31 +00:00
|
|
|
%token <y_word> GPR
|
|
|
|
%token <y_word> FPR
|
2018-09-02 19:36:09 +00:00
|
|
|
%token <y_word> FCOND
|
2018-09-01 17:35:31 +00:00
|
|
|
|
2018-09-03 20:47:41 +00:00
|
|
|
%token <y_word> OP_LI
|
|
|
|
|
2018-09-09 12:11:11 +00:00
|
|
|
%token <y_word> HI16
|
|
|
|
%token <y_word> HA16
|
|
|
|
%token <y_word> LO16
|
2018-09-08 20:42:06 +00:00
|
|
|
|
2018-09-02 19:36:09 +00:00
|
|
|
%type <y_word> gpr fpr
|
2018-09-01 17:35:31 +00:00
|
|
|
%type <y_word> e16 e9
|
2018-09-02 19:36:09 +00:00
|
|
|
%type <y_word> u25 u20 u16 u5 u3
|
2018-09-01 17:35:31 +00:00
|
|
|
%type <y_word> abs26 offset16
|
|
|
|
|
2018-09-04 21:43:24 +00:00
|
|
|
%type <y_word> fmt fmt3
|
|
|
|
%type <y_word> fcond
|
|
|
|
|
2018-09-01 17:35:31 +00:00
|
|
|
%type <y_word> extmsblsb insmsblsb
|
2018-09-08 20:42:06 +00:00
|
|
|
%type <y_valu> extabsexp
|
2018-09-01 17:35:31 +00:00
|
|
|
|
|
|
|
#include "definitions.y"
|
|
|
|
|