about summary refs log tree commit diff
path: root/include/instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/instruction.h')
-rw-r--r--include/instruction.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/instruction.h b/include/instruction.h
new file mode 100644
index 0000000..449c760
--- /dev/null
+++ b/include/instruction.h
@@ -0,0 +1,16 @@
+#ifndef __CCL_INSTRUCTION_H__
+#define __CCL_INSTRUCTION_H__
+
+#include "3cl.h"
+
+
+typedef struct CCLFrame *(*CCLInstruction)(struct CCL *ccl, struct CCLFrame *frame);
+
+struct CCLFrame *ccl_instruction_nop(struct CCL *ccl, struct CCLFrame *frame);
+struct CCLFrame *ccl_instruction_pushzero(struct CCL *ccl, struct CCLFrame *frame);
+struct CCLFrame *ccl_instruction_increment(struct CCL *ccl, struct CCLFrame *frame);
+struct CCLFrame *ccl_instruction_decrement(struct CCL *ccl, struct CCLFrame *frame);
+
+struct CCLFrame *ccl_instruction(struct CCL *ccl, struct CCLFrame *frame);
+
+#endif /* __CCL_INSTRUCTION_H__ */