about summary refs log tree commit diff stats
path: root/miasm/loader/minidump.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2024-01-07 22:48:37 +0100
committerGitHub <noreply@github.com>2024-01-07 22:48:37 +0100
commit3a2fb2472c0e8e01f84ed29be29a929775ed07ab (patch)
tree17718031046a1e912072db057993b478aa0ce06e /miasm/loader/minidump.py
parente9dee4eb5e8b8dc0b81e22598b754c8df29f1674 (diff)
parent2bf07ad1eb835e12b4b3dbaf42f71adf888a8cc1 (diff)
downloadfocaccia-miasm-3a2fb2472c0e8e01f84ed29be29a929775ed07ab.tar.gz
focaccia-miasm-3a2fb2472c0e8e01f84ed29be29a929775ed07ab.zip
Merge pull request #1464 from mrexodia/python312
Python 3.12 support
Diffstat (limited to 'miasm/loader/minidump.py')
-rw-r--r--miasm/loader/minidump.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/loader/minidump.py b/miasm/loader/minidump.py
index fbb7bde5..c16473b4 100644
--- a/miasm/loader/minidump.py
+++ b/miasm/loader/minidump.py
@@ -388,7 +388,7 @@ class Context_AMD64(CStruct):
         ("MxCsr", "u32"),
 
         # Segment & processor
-        # /!\ activation depends on multiple flags
+        # [!] activation depends on multiple flags
         ("SegCs", "u16", is_activated("CONTEXT_CONTROL")),
         ("SegDs", "u16", is_activated("CONTEXT_SEGMENTS")),
         ("SegEs", "u16", is_activated("CONTEXT_SEGMENTS")),
@@ -406,7 +406,7 @@ class Context_AMD64(CStruct):
         ("Dr7", "u64", is_activated("CONTEXT_DEBUG_REGISTERS")),
 
         # Integer registers
-        # /!\ activation depends on multiple flags
+        # [!] activation depends on multiple flags
         ("Rax", "u64", is_activated("CONTEXT_INTEGER")),
         ("Rcx", "u64", is_activated("CONTEXT_INTEGER")),
         ("Rdx", "u64", is_activated("CONTEXT_INTEGER")),