diff options
Diffstat (limited to 'miasm2/arch/x86/sem.py')
| -rw-r--r-- | miasm2/arch/x86/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index 565e63c5..17965fdc 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -2778,8 +2778,8 @@ def sidt(ir, instr, a): def sldt(ir, instr, a): - # XXX TOOD - e = [m2_expr.ExprAff(exception_flags, m2_expr.ExprInt32(EXCEPT_PRIV_INSN))] + print "DEFAULT SLDT ADDRESS %s!!" % str(a) + e = [m2_expr.ExprAff(a, m2_expr.ExprInt(0, a.size))] return e, [] |