Skip to content

Commit

Permalink
Update gdb-walkthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
bredd committed Mar 8, 2024
1 parent 8c28c0a commit b82a367
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions recitation/gdb-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ Once GDB is loaded you type commands to debug the code. Here are some of the mos
* `step`<br/>Step through the next source code line, diving into functions when called
* `next`<br/>Step through the next source code line skipping over function calls
* `info registers`<br/>Show the contents of all registers
* `info register rax`<br/>Show the contents of one register
* `print a`<br/>Print the value of a variable
* `set $rax = 42`<br/>Set the value of a register
* `set var a = 42`<br/>Set the value of a variable
Expand Down

0 comments on commit b82a367

Please sign in to comment.