diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-08-29 11:18:43 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-08-29 11:18:43 +0200 |
| commit | bd1dfe0154b07b969d7d02661b9b562cfdb05047 (patch) | |
| tree | 9331357b6f41622407d0e4ea81104e6aa1e206a7 | |
| parent | 5ca8bd8e86894983ffc3c56eba87590a3bc2c3c8 (diff) | |
| download | miasm-bd1dfe0154b07b969d7d02661b9b562cfdb05047.tar.gz miasm-bd1dfe0154b07b969d7d02661b9b562cfdb05047.zip | |
x86: fix float_list
| -rw-r--r-- | miasm2/arch/x86/sem.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index c78c9c36..61e2c7e0 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -56,14 +56,15 @@ OF(A-B) = ((A XOR D) AND (A XOR B)) < 0 float_list = [ - float_st0, - float_st1, - float_st2, - float_st3, - float_st4, - float_st5, - float_st6, - float_st7, + ExprId("ST", 64), + ExprId("ST(0)", 64), + ExprId("ST(1)", 64), + ExprId("ST(2)", 64), + ExprId("ST(3)", 64), + ExprId("ST(4)", 64), + ExprId("ST(5)", 64), + ExprId("ST(6)", 64), + ExprId("ST(7)", 64), ] |