Added the step over for source level tracing
authorJean-Paul Mari <djipi.mari@gmail.com>
Sun, 15 Mar 2020 18:37:37 +0000 (14:37 -0400)
committerJean-Paul Mari <djipi.mari@gmail.com>
Sun, 15 Mar 2020 18:37:37 +0000 (14:37 -0400)
docs/vj_HistoryNotes.txt
src/gui/mainwin.cpp

index b39c710..47363d0 100644 (file)
@@ -8,6 +8,7 @@ Release 5 (TBA)
 -- Alert box will display a message and then the code will stop
 3) Added a HW registers browser window and set a tab for the Blitter
 4) Added a source tab in the main window for step into tracing
+5) Added the step over for source level tracing
 
 Release 4a (15th August 2019)
 -----------------------------
index ede2dc8..82c6c3c 100644 (file)
@@ -24,6 +24,7 @@
 // JPM  11/18/2018  Fix crash with non-debugger mode\r
 // JPM  April/2019  Added ELF sections check, added a save memory dump\r
 // JPM   Aug./2019  Update texts descriptions, set cartridge view menu for debugger mode only, added a HW registers browser and source level tracing\r
+// JPM  Marc./2020  Added the step over for source level tracing\r
 //\r
 \r
 // FIXED:\r
@@ -1634,7 +1635,10 @@ void MainWin::DebuggerTraceStepOver(void)
 {\r
        if (SourcesWin->isVisible() && SourcesWin->GetTraceStatus())\r
        {\r
-\r
+               while (!SourcesWin->CheckChangeLine())\r
+               {\r
+                       JaguarStepOver(0);\r
+               }\r
        }\r
        else\r
        {\r