diff options
| author | Pierre Lalet <pierre@droids-corp.org> | 2015-02-18 20:55:26 +0100 |
|---|---|---|
| committer | Pierre Lalet <pierre@droids-corp.org> | 2015-02-18 20:55:26 +0100 |
| commit | 736befb2b6fab02e601eae392a9969ac91f2caa3 (patch) | |
| tree | 66b6208ca4ca21ac8efb3606930ffb664ecddc69 /miasm2/arch/x86/sem.py | |
| parent | 5b3589b4735024e96becb5dbd8d25de4416f7cfb (diff) | |
| parent | df19d375b8552406de77290c95ff41ef366b76c6 (diff) | |
| download | miasm-736befb2b6fab02e601eae392a9969ac91f2caa3.tar.gz miasm-736befb2b6fab02e601eae392a9969ac91f2caa3.zip | |
Merge pull request #76 from commial/pylinting
Pylinting (thanks for this work!)
Diffstat (limited to 'miasm2/arch/x86/sem.py')
| -rw-r--r-- | miasm2/arch/x86/sem.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index 6e22e66d..bc98baf3 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -1845,18 +1845,15 @@ def ficom(ir, instr, a, b = None): def fcomi(ir, instr, a): - # Invalid emulation - InvalidEmulation + raise NotImplementedError("Invalid emulation") def fcomip(ir, instr, a): - # Invalid emulation - InvalidEmulation + raise NotImplementedError("Invalid emulation") def fucomi(ir, instr, a): - # Invalid emulation - InvalidEmulation + raise NotImplementedError("Invalid emulation") def fucomip(ir, instr, a, b): |