Advertisement
GoGoJJTech

waitforfadecopy.asm

Apr 24th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. .text
  2. .global startup
  3.  
  4. .thumb
  5. .thumb_func
  6. .align 2
  7.  
  8. main: push {lr}
  9. ldr r0, fadeScreenDone
  10. ldrb r1, [r0, #0x7]
  11. mov r0, #0x80
  12. and r0, r1
  13. cmp r0, #0x0
  14. beq C_loop
  15. mov r0, #0x0
  16. pop {r1}
  17. bx r1
  18.  
  19. .align 2
  20. fadeScreenDone: .word 0x02037AB8
  21.  
  22. C_Loop:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement