mirror of
https://github.com/pevans/erc-c.git
synced 2025-01-04 22:30:18 +00:00
6e77e99813
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).
11 lines
193 B
C
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
|