Add Bocfel interpreter
[projects/chimara/chimara.git] / interpreters / bocfel / process.h
1 #ifndef ZTERP_PROCESS_h
2 #define ZTERP_PROCESS_H
3
4 #include <stdint.h>
5
6 extern uint16_t zargs[];
7 extern int znargs;
8
9 void break_from(long);
10 void reset_level(void);
11 long interrupt_level(void);
12
13 void setup_opcodes(void);
14 void process_instructions(void);
15
16 #endif