Differences From Artifact [a3dc22f64a]:
- File instruc.h — part of check-in [79caf678be] at 2018-05-05 23:58:56 on branch trunk — Implement preprocessor, and add some more opcode names, and a few bug fixed (user: user, size: 14113) [annotate] [blame] [check-ins using]
To Artifact [834265d374]:
- File instruc.h — part of check-in [e049e8ed33] at 2018-05-19 19:23:52 on branch trunk — More parsing of .class file (user: user, size: 14193) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 | + | #define OP_BITCONSTANT 34792 #define OP_BITCONSTANT_LAST 34815 #define OP_STOP 0 #define OP_ONCE 1 #define OP_LOOP 2 #define OP_OSC 8 #define OP_OSCLOOP 10 #define OP_DROP 32768 #define OP_DROP_D 40960 |
︙ | |||
338 339 340 341 342 343 344 345 346 347 348 349 350 351 | 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | + + | #define OP_XDIR_C 34976 #define OP_YDIR 32929 #define OP_YDIR_C 34977 #define OP_FUNCTION 32930 #define OP_LOCAL 32931 #define OP_LABEL 32932 #define OP_STRING 32933 #define OP_INT16 32934 #define OP_INT32 32935 #ifdef HEROMESH_CLASS static const Op_Names op_names[]={ {"*",8486933}, {"+",8421395}, {"-",8421396}, {".",10518528}, {"/",8486934}, |
︙ |