# HG changeset patch # User Michael Pavone # Date 1420349723 28800 # Node ID 41a399c11ef1b3567069be1b88b73fc2a2cc8759 # Parent 5bf4e77b1a43fc457da81fec10a5aedd527df958 When going directly from reset to busreq, do not allow the Z80 to run diff -r 5bf4e77b1a43 -r 41a399c11ef1 z80_to_x86.c --- a/z80_to_x86.c Sat Jan 03 21:20:18 2015 -0800 +++ b/z80_to_x86.c Sat Jan 03 21:35:23 2015 -0800 @@ -2283,6 +2283,10 @@ context->extra_pc = NULL; context->pc = 0; context->reset = 0; + if (context->busreq) { + //TODO: Figure out appropriate delay + context->busack = 1; + } } }