add conses, add if, some examples
[mTask.git] / int / mTaskSymbols.h
index 51a8d79..f67721b 100644 (file)
@@ -1,27 +1,31 @@
 #ifndef MTASK_H
 #define MTASK_H
-#define BCNop 0
-#define BCPush 1
-#define BCPop 2
-#define BCNot 3
-#define BCAdd 4
-#define BCSub 5
-#define BCMul 6
-#define BCDiv 7
-#define BCAnd 8
-#define BCOr 9
-#define BCEq 10
-#define BCNeq 11
-#define BCLes 12
-#define BCGre 13
-#define BCLeq 14
-#define BCGeq 15
-#define BCJmp 16
-#define BCJmpT 17
-#define BCJmpF 18
+#define BCNOP 0
+#define BCPUSH 1
+#define BCPOP 2
+#define BCNOT 3
+#define BCADD 4
+#define BCSUB 5
+#define BCMUL 6
+#define BCDIV 7
+#define BCAND 8
+#define BCOR 9
+#define BCEQ 10
+#define BCNEQ 11
+#define BCLES 12
+#define BCGRE 13
+#define BCLEQ 14
+#define BCGEQ 15
+#define BCJMP 16
+#define BCJMPT 17
+#define BCJMPF 18
 #define BCSERIALAVAIL 19
 #define BCSERIALPRINT 20
 #define BCSERIALPRINTLN 21
 #define BCSERIALREAD 22
 #define BCSERIALPARSEINT 23
+#define BCANALOGREAD 24
+#define BCANALOGWRITE 25
+#define BCDIGITALREAD 26
+#define BCDIGITALWRITE 27
 #endif