From c74aea420c662039072f606b2d5ef1c73426e481 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sat, 24 Aug 2024 14:29:55 +0300 Subject: Add more code Add some funcitons to work with variables, add more instructions and add ability to stop the code from `ccl_instruction` --- include/3cl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/3cl.h') diff --git a/include/3cl.h b/include/3cl.h index a6b9065..4466490 100644 --- a/include/3cl.h +++ b/include/3cl.h @@ -1,6 +1,7 @@ #ifndef __3CL_H__ #define __3CL_H__ +#include #include #include @@ -85,6 +86,7 @@ struct CCL struct CCLStack stack; struct CCLFrame rootframe; const char *code; + bool stopped; int (*in)(); void (*out)(int); }; -- cgit 1.4.1