X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=int%2FmTaskSymbols.h;h=35b211a63281092337652e3b8c1940912782de58;hb=8449be73c124cdccd37500c0d67d9404b94fc9c8;hp=d4b75e9e4394a585ae4c61f54d9c7ea8dbc89dbb;hpb=48dfd7ad2f104321657a3ea44d33340761c95c2e;p=mTask.git diff --git a/int/mTaskSymbols.h b/int/mTaskSymbols.h index d4b75e9..35b211a 100644 --- a/int/mTaskSymbols.h +++ b/int/mTaskSymbols.h @@ -1,23 +1,36 @@ #ifndef MTASK_H #define MTASK_H -#define BCNop 0 -#define BCPush 1 -#define BCPop 2 -#define BCNeg 3 -#define BCNot 4 -#define BCAdd 5 -#define BCSub 6 -#define BCMul 7 -#define BCDiv 8 -#define BCAnd 9 -#define BCOr 10 -#define BCEq 11 -#define BCNeq 12 -#define BCLes 13 -#define BCGre 14 -#define BCLeq 15 -#define BCGeq 16 -#define BCJmp 17 -#define BCJmpT 18 -#define BCJmpF 19 +#define BCNOP 1 +#define BCLAB 2 +#define BCPUSH 3 +#define BCPOP 4 +#define BCSDSSTORE 5 +#define BCSDSFETCH 6 +#define BCSDSPUBLISH 7 +#define BCNOT 8 +#define BCADD 9 +#define BCSUB 10 +#define BCMUL 11 +#define BCDIV 12 +#define BCAND 13 +#define BCOR 14 +#define BCEQ 15 +#define BCNEQ 16 +#define BCLES 17 +#define BCGRE 18 +#define BCLEQ 19 +#define BCGEQ 20 +#define BCJMP 21 +#define BCJMPT 22 +#define BCJMPF 23 +#define BCSERIALAVAIL 24 +#define BCSERIALPRINT 25 +#define BCSERIALPRINTLN 26 +#define BCSERIALREAD 27 +#define BCSERIALPARSEINT 28 +#define BCANALOGREAD 29 +#define BCANALOGWRITE 30 +#define BCDIGITALREAD 31 +#define BCDIGITALWRITE 32 +#define BCTEST 33 #endif