diff options
| author | Taylor Rogers <[email protected]> | 2022-10-02 08:44:37 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-10-02 08:44:37 -0700 |
| commit | c0519fd8775f42b5f314e5bf61bc2b2b26c58be1 (patch) | |
| tree | f0ef088774c8213279e8f8eeeea274157e525229 | |
| parent | Misc changes (diff) | |
| download | cst116-lab0-debugging-taylorrog-c0519fd8775f42b5f314e5bf61bc2b2b26c58be1.tar.xz cst116-lab0-debugging-taylorrog-c0519fd8775f42b5f314e5bf61bc2b2b26c58be1.zip | |
Finishing exercise 1
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.cpp | 7 | ||||
| -rw-r--r-- | Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog | bin | 7646 -> 7426 bytes | |||
| -rw-r--r-- | Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog | bin | 1974 -> 1974 bytes | |||
| -rw-r--r-- | Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe | bin | 54272 -> 54272 bytes | |||
| -rw-r--r-- | Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk | bin | 505192 -> 522840 bytes | |||
| -rw-r--r-- | Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj | bin | 82795 -> 82795 bytes | |||
| -rw-r--r-- | Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb | bin | 1757184 -> 1953792 bytes |
7 files changed, 7 insertions, 0 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp index 38f6623..0ab1db3 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp @@ -19,6 +19,10 @@ * the current line being that cout statement, Step Into again.
* 6) What happened? Where are we now? What is all of this nasty
* looking code?
+*
+* Step 6 didn't work, as noted in Saturdays class. If I right click and
+* "step into specific" I think it has the same desired effect.
+*
* 7) Remember, stepping into a predefined routine takes you to the
* code for that routine. If the debugger can't find the code it
* will show the assembly code for that routine.
@@ -28,6 +32,9 @@ * line.
* 10) Step over the next cout statement. Now look at the console
* window. What was printed?
+*
+* After "stepping over" to the next cout, I see: "After your raise you have $"
+*
* 11) Select Stop Debugging either from the Debug menu or from your
* toolbar.
*
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog Binary files differindex 4bdab29..f996d4c 100644 --- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog +++ b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog Binary files differindex 1d5f4ee..9671e37 100644 --- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog +++ b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe Binary files differindex ce9d69d..a97bfe2 100644 --- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe +++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk Binary files differindex de150d8..9647b59 100644 --- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk +++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj Binary files differindex af85018..4701a9b 100644 --- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj +++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb Binary files differindex feb031d..4f18726 100644 --- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb +++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb |