- added debugger command: show "vga" which forces a vga update.

I haven't yet seen a case where this makes a useful difference, but
  it doesn't cause problems either.
This commit is contained in:
Bryce Denney 2001-06-07 15:40:11 +00:00
parent ef907186ef
commit 8195f1d252
1 changed files with 3 additions and 0 deletions

View File

@ -1130,6 +1130,9 @@ void bx_dbg_show_command(char* arg)
/* bx_dbg.record_io = 0; this is a pointer .. somewhere */ /* bx_dbg.record_io = 0; this is a pointer .. somewhere */
printf("Turned off all bx_dbg flags\n"); printf("Turned off all bx_dbg flags\n");
return; return;
} else if(!strcmp(arg,"\"vga\"")){
bx_vga.timer ();
return;
} else { } else {
printf("Unrecognized arg: %s ('mode' 'int' 'call' 'ret' 'dbg-all' are valid)\n",arg); printf("Unrecognized arg: %s ('mode' 'int' 'call' 'ret' 'dbg-all' are valid)\n",arg);
return; return;