Advertisement
Guest User

Untitled

a guest
Jun 17th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. header
  2. sa1rom
  3.  
  4. !a = autoclean
  5.  
  6. ;Ignore the comments, they're left over from the old version and have been moved around a bit.
  7.  
  8. org $02A129
  9. LDA #$02 ; / Make sprite fall down...
  10. STA $3242,x ; \ ... or disappear in smoke (depends on its settings)
  11. !a JSL Main
  12. JSL $02ACEF ; Jump to the score routine handler.
  13.  
  14. freecode
  15. reset bytes
  16.  
  17. Main:
  18. LDY $785E
  19. LDA $7747,y
  20. BMI +
  21. LDA #$20
  22. BRA ++
  23. +
  24. LDA #$E0
  25. ++
  26. STA $30B6,x
  27.  
  28. LDA #$05 ; 5 = 100. Changing it will change the amount of score you get (1=10,2=20,3=40,4=80,5=100,6=200,7=400,8=800,9=1000,A=2000,B=4000,C=8000,D=1up)
  29. RTL
  30. End:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement