about summary refs log tree commit diff stats
path: root/arch/x86.py
diff options
context:
space:
mode:
authorTheofilos Augoustis <theofilos.augoustis@gmail.com>2023-10-21 16:39:49 +0200
committerTheofilos Augoustis <theofilos.augoustis@gmail.com>2023-10-21 16:39:49 +0200
commit6f01367f9c8ad4c3d641cc63dbb1a3977ff4ec56 (patch)
tree5b9677b9a5cca449497cea4418b2bb10e2ab0509 /arch/x86.py
parent83d4b4dbe6f20c2fa7865e4888b89e888d3509f9 (diff)
downloadfocaccia-6f01367f9c8ad4c3d641cc63dbb1a3977ff4ec56.tar.gz
focaccia-6f01367f9c8ad4c3d641cc63dbb1a3977ff4ec56.zip
Support for testing concrete and emulated execution with angr
Diffstat (limited to 'arch/x86.py')
-rw-r--r--arch/x86.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86.py b/arch/x86.py
index 0f60457..2b27315 100644
--- a/arch/x86.py
+++ b/arch/x86.py
@@ -30,4 +30,4 @@ regnames = ['PC',
 
 class ArchX86(Arch):
     def __init__(self):
-        super().__init__(regnames)
+        super().__init__("X86", regnames)