summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sh/arith.h')
-rw-r--r--sh/arith.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/sh/arith.h b/sh/arith.h
new file mode 100644
index 000000000..f70c09336
--- /dev/null
+++ b/sh/arith.h
@@ -0,0 +1,25 @@
1#define ARITH_NUM 258
2#define ARITH_LPAREN 259
3#define ARITH_RPAREN 260
4#define ARITH_OR 261
5#define ARITH_AND 262
6#define ARITH_BOR 263
7#define ARITH_BXOR 264
8#define ARITH_BAND 265
9#define ARITH_NE 266
10#define ARITH_EQ 267
11#define ARITH_LE 268
12#define ARITH_GE 269
13#define ARITH_GT 270
14#define ARITH_LT 271
15#define ARITH_RSHIFT 272
16#define ARITH_LSHIFT 273
17#define ARITH_SUB 274
18#define ARITH_ADD 275
19#define ARITH_REM 276
20#define ARITH_DIV 277
21#define ARITH_MUL 278
22#define ARITH_BNOT 279
23#define ARITH_NOT 280
24#define ARITH_UNARYPLUS 281
25#define ARITH_UNARYMINUS 282