about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/regs.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-08-05 16:23:19 +0200
committerserpilliere <devnull@localhost>2014-08-05 16:23:19 +0200
commit8cbb7db586badb5102d411af479e2d7ab42ce40c (patch)
treef8a9e997e02232a75a62e7b71b5dfc470623c3e5 /miasm2/arch/x86/regs.py
parentdb8c7152ac455ad0b1be151641f77d1b36d0c854 (diff)
downloadmiasm-8cbb7db586badb5102d411af479e2d7ab42ce40c.tar.gz
miasm-8cbb7db586badb5102d411af479e2d7ab42ce40c.zip
x86 arch: fix some mnemonic
Diffstat (limited to 'miasm2/arch/x86/regs.py')
-rw-r--r--miasm2/arch/x86/regs.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/miasm2/arch/x86/regs.py b/miasm2/arch/x86/regs.py
index 37935edc..a4383249 100644
--- a/miasm2/arch/x86/regs.py
+++ b/miasm2/arch/x86/regs.py
@@ -342,14 +342,14 @@ float_cs = ExprId(reg_float_cs, size=16)
 float_address = ExprId(reg_float_address)
 float_ds = ExprId(reg_float_ds, size=16)
 
-float_st0 = ExprId(reg_float_st0, 64)
-float_st1 = ExprId(reg_float_st1, 64)
-float_st2 = ExprId(reg_float_st2, 64)
-float_st3 = ExprId(reg_float_st3, 64)
-float_st4 = ExprId(reg_float_st4, 64)
-float_st5 = ExprId(reg_float_st5, 64)
-float_st6 = ExprId(reg_float_st6, 64)
-float_st7 = ExprId(reg_float_st7, 64)
+float_st0 = ExprId("ST", 64)
+float_st1 = ExprId("ST(1)", 64)
+float_st2 = ExprId("ST(2)", 64)
+float_st3 = ExprId("ST(3)", 64)
+float_st4 = ExprId("ST(4)", 64)
+float_st5 = ExprId("ST(5)", 64)
+float_st6 = ExprId("ST(6)", 64)
+float_st7 = ExprId("ST(7)", 64)
 
 EAX_init = ExprId('EAX_init')
 EBX_init = ExprId('EBX_init')