Skip to content

Commit

Permalink
Merge pull request #1047 from Ninjananas/fix_msp430
Browse files Browse the repository at this point in the history
fix typo in msp430's sem.py
  • Loading branch information
serpilliere authored Jun 17, 2019
2 parents 338dd94 + 75edf2c commit fa1bb95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miasm/arch/msp430/sem.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def xor_w(ir, instr, a, b):
e += [ExprAssign(zf, ExprOp('FLAG_EQ_CMP', arg2, arg1))]
e += update_flag_nf(res)
e += reset_sr_res()
e += update_flag_cf_inv_zf(c)
e += update_flag_cf_inv_zf(res)
e.append(ExprAssign(of, arg2.msb() & arg1.msb()))

return e, []
Expand Down

0 comments on commit fa1bb95

Please sign in to comment.