about summary refs log tree commit diff stats
path: root/test/jitter/mem_breakpoint.py
diff options
context:
space:
mode:
authorWilliam Bruneau <william.bruneau@epfedu.fr>2022-02-22 14:54:54 +0100
committerWilliam Bruneau <william.bruneau@epfedu.fr>2022-02-23 08:44:51 +0100
commit321d298a5265e94fde00c3c8068dc87612ac1e5a (patch)
tree8ba3b4493e038f12ecae6e4dade2f2feab37f807 /test/jitter/mem_breakpoint.py
parent53f1cbece50351d59ad22b09b4606138f980f0ba (diff)
downloadmiasm-321d298a5265e94fde00c3c8068dc87612ac1e5a.tar.gz
miasm-321d298a5265e94fde00c3c8068dc87612ac1e5a.zip
Add memory breakpoints in debugger and examples
Diffstat (limited to 'test/jitter/mem_breakpoint.py')
-rw-r--r--test/jitter/mem_breakpoint.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/jitter/mem_breakpoint.py b/test/jitter/mem_breakpoint.py
index bd51e692..9ec9a06d 100644
--- a/test/jitter/mem_breakpoint.py
+++ b/test/jitter/mem_breakpoint.py
@@ -71,9 +71,7 @@ jitter.vm.set_mem(0xFFFFFF800901EBEC, decode_hex("FD7BBEA901008052FD030091A26300
 
 jitter.set_trace_log()
 
-jitter.exceptions_handler.callbacks[EXCEPT_BREAKPOINT_MEMORY] = []
-jitter.add_exception_handler(EXCEPT_BREAKPOINT_MEMORY,
-                             mem_breakpoint_handler)
+jitter.add_exception_handler(EXCEPT_BREAKPOINT_MEMORY, mem_breakpoint_handler)
 jitter.vm.add_memory_breakpoint(0xFFFFFF8009080000, 0x8000000, PAGE_READ | PAGE_WRITE)
 
 jitter.init_run(0xFFFFFF800901EBEC)