diff options
| author | Camille Mougey <commial@gmail.com> | 2018-03-28 15:22:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-28 15:22:51 +0200 |
| commit | 5b07d8c8828bdaba0c9a4ce63e978441d5dab525 (patch) | |
| tree | aa61c08b6da9a914c0ec5d4f0a516d6f365d5da3 /miasm2/analysis/debugging.py | |
| parent | 92e508bc505fc8c23cc2a50ee6abfb03ccfa3ce4 (diff) | |
| parent | 719266807687e0a9a5b4f194d7c2220974a2e83f (diff) | |
| download | miasm-5b07d8c8828bdaba0c9a4ce63e978441d5dab525.tar.gz miasm-5b07d8c8828bdaba0c9a4ce63e978441d5dab525.zip | |
Merge pull request #707 from serpilliere/fix_bp_memory_name
Fix memory breakpoint name
Diffstat (limited to '')
| -rw-r--r-- | miasm2/analysis/debugging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/debugging.py b/miasm2/analysis/debugging.py index d970f848..fc03eb17 100644 --- a/miasm2/analysis/debugging.py +++ b/miasm2/analysis/debugging.py @@ -87,7 +87,7 @@ class Debugguer(object): self.myjit.add_breakpoint(addr, func) def init_memory_breakpoint(self): - "Set exception handler on EXCEPT_BREAKPOINT_INTERN" + "Set exception handler on EXCEPT_BREAKPOINT_MEMORY" raise NotImplementedError("Not implemented") def add_memory_breakpoint(self, addr, size, read=False, write=False): |