Dandaman955

Yeah

May 27th, 2015
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. My issue:
  2.  
  3.                 subq.b  #1,$63(a0)
  4.                 bpl.s   loc_23b2
  5.                 movea.w $4C(a0),a1
  6.                 cmpi.b  #1,(a1)
  7. loc_238c    6602    bne.s loc_2390
  8. loc_238e    137c0005007d    move.b #5,(a1)(125)           ;
  9. loc_2394    4228007d    clr.b (a0)(125)
  10. loc_2398    4268004c    clr.w (a0)(76)
  11.  
  12. As you see, the conditional branches to 2390 due to the bne, but bne is in the middle of an instruction. It will continue with move.b, otherwise, the branched instruction (0005007D) becomes ori.b $7D,d5. The following clr instructions are unchanged no matter what instructions are chosen.
Advertisement
Add Comment
Please, Sign In to add comment