From 17a1974f6a500288091e684cf70629d8c350a442 Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Fri, 25 Oct 2002 15:25:13 +0000 Subject: [PATCH] debugger changes/additions Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@414 --- ChangeLog | 2 ++ src/cpu/core_16/main.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 51dbfd18..62de4472 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,8 @@ - VGA fixes - new wildcompare - support for size and disktype at mount. + - added new debugger functionalities: start/trace into INTs, write processor status log, + step over rep and loop instructions, breakpoint support without using INT 03 (heavy debugging switch) 0.55 - fixed the errors/warnings in prefix_66.h and prefix_66_of.h (decimal too large becomming unsigned). diff --git a/src/cpu/core_16/main.h b/src/cpu/core_16/main.h index 9ce64162..e4133b21 100644 --- a/src/cpu/core_16/main.h +++ b/src/cpu/core_16/main.h @@ -1079,7 +1079,7 @@ restart: goto reploop; #ifdef CPU_386 case 0x66: - Rep_66(direct,from,to,repcheck); + Rep_66(direct,from,to); break; #endif