Writing a Debugger From Scratch

Open link in next tab

Writing a Debugger From Scratch - DbgRs Part 5 - Breakpoints

https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-5/

(New to this series? Consider starting from part 1) At the end of the last post, we started to get some interesting functionality with the ability to resolve addresses to names in a module. This was the last functionality missing before we could implement breakpoints! This part adds the ability for DbgRs to set hardware breakpoints. The code for this post is in the part5 branch on github. You can also view the changes from part4.