From 2b0e05cbc1e4d9beccd3a5867c8730880f6ecc10 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 23 Aug 2024 20:43:31 +0300 Subject: Start to rewriting code Since there's some UB in the master I decided to rewrite code from scratch again. I hope that attempt will be better :D --- include/instruction.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/instruction.h (limited to 'include/instruction.h') 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__ */ -- cgit 1.4.1