1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-11 05:29:33 +00:00
erc-c/include/apple2/event.h
Peter Evans 6e77e99813 Add ability to debug separate from pausing
Also, pausing just pauses now; no debugger prompt is shown. ALT+P
toggles pausing, so just hit it again to unpause. Also, when things are
paused, you can perform other keyboard events (like quitting).
2018-04-07 11:14:12 -05:00

11 lines
193 B
C

#ifndef _APPLE2_REFLECT_H_
#define _APPLE2_REFLECT_H_
#include "vm_event.h"
extern EVENT_DO(apple2_event_debug);
extern EVENT_DO(apple2_event_pause);
extern void apple2_event_init();
#endif