Fix `Step Into` in assembly view
authorJan Vrany <jan.vrany@labware.com>
Tue, 17 Nov 2020 20:04:06 +0000
changeset 204 fbf9eff7df60
parent 203 6fd080fc5ee3
child 205 fbcf9c641769
Fix `Step Into` in assembly view ...simple typo caused DNU. Sigh.
README.md
VDBInstructionListApplication.st
--- a/README.md	Tue Nov 17 15:18:37 2020 +0000
+++ b/README.md	Tue Nov 17 20:04:06 2020 +0000
@@ -4,7 +4,6 @@
 
 ## Features
 
-  * integrated support for reverse-debugging,
   * source-and-assembly view with detailed instruction analysis (basic blocks, 
     jump targets and so on),
   * data structure inspector,
@@ -21,7 +20,7 @@
 
 ## Prerequisites
 
-It is recommended to use GDB built from [https://bitbucket.org/janvrany/binutils-gdb][4] as it contains changes required by *VDB*. For more information about building patched GDB see [https://bitbucket.org/janvrany/jv-libgdbs/src/tip/doc/GDB.md][9].
+It is recommended to use GDB built from [https://github.com/janvrany/binutils-gdb][4] as it contains changes required by *VDB*. For more information about building patched GDB see [https://swing.fit.cvut.cz/hg/jv-libgdbs/file/tip/doc/GDB.md][9].
 
 ## Building from Source
 
@@ -97,11 +96,11 @@
 [1]: http://creativecommons.org/licenses/by-nc/4.0/
 [2]: https://www.gnu.org/software/gdb/
 [3]: https://swing.fit.cvut.cz/projects/stx-jv
-[4]: https://bitbucket.org/janvrany/binutils-gdb
+[4]: https://github.com/janvrany/binutils-gdb
 [5]: https://swing.fit.cvut.cz/jenkins/job/stx_jv/lastSuccessfulBuild/
 [6]: https://swing.fit.cvut.cz/projects/stx-jv/wiki/Documentation/BuildingStXWithRakefiles
 [7]: https://swing.fit.cvut.cz/projects/stx-jv/newticket
 [8]: https://groups.google.com/forum/#!forum/stx-jv
-[9]: https://bitbucket.org/janvrany/jv-libgdbs/src/tip/doc/GDB.md
+[9]: https://swing.fit.cvut.cz/hg/jv-libgdbs/file/tip/doc/GDB.md
 [10]: doc/README.md
 [11]: https://rr-project.org/
\ No newline at end of file
--- a/VDBInstructionListApplication.st	Tue Nov 17 15:18:37 2020 +0000
+++ b/VDBInstructionListApplication.st	Tue Nov 17 20:04:06 2020 +0000
@@ -1,6 +1,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2020 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -27,6 +28,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2020 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -739,10 +741,10 @@
     "Modified: / 01-09-2018 / 22:16:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-doExecSteIntoInstruction
+doExecStepIntoInstruction
     self doExec:GDBMI_exec_step_instruction new
 
-    "Created: / 01-09-2018 / 22:00:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Created: / 17-11-2020 / 19:38:43 / Jan Vrany <jan.vrany@labware.com>"
 !
 
 doExecStepOverInstruction