diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-03-28 14:26:16 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-03-28 14:26:16 +0200 |
| commit | 719266807687e0a9a5b4f194d7c2220974a2e83f (patch) | |
| tree | a51177894ea3a989919d31b875b3bbd6cb5a1c39 /miasm2/analysis/debugging.py | |
| parent | 50a0b480a729507c8e49af39588592fbfb5476b1 (diff) | |
| download | miasm-719266807687e0a9a5b4f194d7c2220974a2e83f.tar.gz miasm-719266807687e0a9a5b4f194d7c2220974a2e83f.zip | |
Fix memory breakpoint name
Diffstat (limited to 'miasm2/analysis/debugging.py')
| -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): |