OVR: Change the way to walk and rotate with the controller
[mercenary-reloaded.git] / src / libcpu / execute.h
1
2 struct cpu_stop {
3         uint32_t        pc;
4         uint8_t         event;
5 };
6
7 void execute_init(int32_t _memory_size, uint8_t *_memory, uint8_t *_stop_event, uint16_t *_chipreg, uint16_t (*_io_read)(uint32_t address), void (*_io_write)(uint32_t address, uint16_t value), const struct cpu_stop stop_at[]);
8 void reset_cpu(void);
9 int execute_cpu(int irq, int *event);
10