about summary refs log tree commit diff stats
path: root/miasm2/arch/msp430/regs.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/msp430/regs.py')
-rw-r--r--miasm2/arch/msp430/regs.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/miasm2/arch/msp430/regs.py b/miasm2/arch/msp430/regs.py
index 1e35029f..11385779 100644
--- a/miasm2/arch/msp430/regs.py
+++ b/miasm2/arch/msp430/regs.py
@@ -92,6 +92,11 @@ all_regs_ids = [
 
 all_regs_ids_no_alias = all_regs_ids
 
+attrib_to_regs = {
+    'l': all_regs_ids_no_alias,
+    'b': all_regs_ids_no_alias,
+}
+
 all_regs_ids_byname = dict([(x.name, x) for x in all_regs_ids])
 
 all_regs_ids_init = [PC_init, SP_init, SR_init, R3_init,