1 /* see copyright notice in squirrel.h */
7 #define MAX_FUNC_STACKSIZE 0xFF
8 #define MAX_LITERALS INT_MAX
21 CMP_GE = 2, //like ADD
45 _OP_LOADROOTTABLE= 0x12,
50 _OP_LOADFREEVAR= 0x17,
55 _OP_APPENDARRAY= 0x1C,
85 struct SQInstructionDesc {
92 SQInstruction(SQOpcode _op,int a0=0,int a1=0,int a2=0,int a3=0)
94 _arg0 = a0;_arg1 = a1;
95 _arg2 = a2;_arg3 = a3;
107 typedef sqvector<SQInstruction> SQInstructionVec;
109 #endif // _SQOPCODES_H_