diff options
| author | serpilliere <devnull@localhost> | 2014-08-05 16:23:19 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-05 16:23:19 +0200 |
| commit | 8cbb7db586badb5102d411af479e2d7ab42ce40c (patch) | |
| tree | f8a9e997e02232a75a62e7b71b5dfc470623c3e5 /test | |
| parent | db8c7152ac455ad0b1be151641f77d1b36d0c854 (diff) | |
| download | miasm-8cbb7db586badb5102d411af479e2d7ab42ce40c.tar.gz miasm-8cbb7db586badb5102d411af479e2d7ab42ce40c.zip | |
x86 arch: fix some mnemonic
Diffstat (limited to 'test')
| -rw-r--r-- | test/arch/x86/arch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index eba4e1f7..be4d63cd 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -383,6 +383,9 @@ reg_tests = [ "d818"), (m32, "00000000 FCOMP QWORD PTR [EAX]", "dC18"), + (m32, "00000000 FCOM ST, ST(2)", + "d8d2"), + (m32, "00000000 FCOMPP", "ded9"), |