Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- My issue:
- subq.b #1,$63(a0)
- bpl.s loc_23b2
- movea.w $4C(a0),a1
- cmpi.b #1,(a1)
- loc_238c 6602 bne.s loc_2390
- loc_238e 137c0005007d move.b #5,(a1)(125) ;
- loc_2394 4228007d clr.b (a0)(125)
- loc_2398 4268004c clr.w (a0)(76)
- 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