On Tuesday, September 9, 2014 12:53:07 PM UTC-7, Michael J. Mahon wrote:
> qkumba wrote:
>
> > might display something. It appears to be used during save/load, but
> > AppleWin won't let me press ESC anymore, once the debugger becomes active).
> Which raises a question I've wondered about: when in the AppleWin
> debugger, how do I "press a key" for the program being debugged?
Michael,
Use the "KEY" debugger command to stuff characters into the virtual keyboard buffer:
key 1B
Should do the trick.
I see in Keyboard.cpp that the virtual keyboard buffer size is only 2 characters. :-/
const int KEY_BUFFER_MAX_SIZE = 2;
static int g_nKeyBufferSize = KEY_BUFFER_MAX_SIZE; // Circ key buffer size
So let us know if you need this increased.