comparison debug.c @ 1629:079e5b9d59ce

Forcefully update the display when entering the 68K debugger so you can see it update in realtime as you step through the code
author Michael Pavone <pavone@retrodev.com>
date Thu, 01 Nov 2018 20:14:56 -0700
parents 4f96103b4b47
children 5aa0c3c43b97
comparison
equal deleted inserted replaced
1628:3c1661305219 1629:079e5b9d59ce
898 m68kinst inst; 898 m68kinst inst;
899 899
900 init_terminal(); 900 init_terminal();
901 901
902 sync_components(context, 0); 902 sync_components(context, 0);
903 genesis_context *gen = context->system;
904 vdp_force_update_framebuffer(gen->vdp);
903 //probably not necessary, but let's play it safe 905 //probably not necessary, but let's play it safe
904 address &= 0xFFFFFF; 906 address &= 0xFFFFFF;
905 if (address == branch_t) { 907 if (address == branch_t) {
906 bp_def ** f_bp = find_breakpoint(&breakpoints, branch_f); 908 bp_def ** f_bp = find_breakpoint(&breakpoints, branch_f);
907 if (!*f_bp) { 909 if (!*f_bp) {