From: Jean-Paul Mari Date: Fri, 16 Apr 2021 22:02:47 +0000 (-0400) Subject: Improve the DWARF source line number reporting X-Git-Tag: v2.1.3-R5^2~13^2~3 X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/commitdiff_plain/8eb17d61a367879931e274f381e113e24928e594 Improve the DWARF source line number reporting --- diff --git a/docs/vj_HistoryNotes.txt b/docs/vj_HistoryNotes.txt index 4a2a32e..d6d7654 100644 --- a/docs/vj_HistoryNotes.txt +++ b/docs/vj_HistoryNotes.txt @@ -35,6 +35,7 @@ Release 5 (TBA) 22) Breakpoint list window is now refreshed after a new breakpoint is set 23) Handle number of M68K cycles used when tracing in debugger mode -- The cycles are displayed in the emulator status window +24) Improve the DWARF source line number reporting Release 4a (15th August 2019) ----------------------------- diff --git a/src/jaguar.cpp b/src/jaguar.cpp index f517cc4..4123d4b 100644 --- a/src/jaguar.cpp +++ b/src/jaguar.cpp @@ -2681,7 +2681,7 @@ int JaguarStepOver(int depth) break; } } - while (!exit); + while (!exit && !M68KDebugHaltStatus()); #ifdef _MSC_VER #pragma message("Warning: !!! Need to verify the Jaguar Step Over function !!!")