Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. !Free = $60 ; Three bytes, same as in INIT.
  2.  
  3. level###:
  4. LDA $14 ;\
  5. AND #$40 ;| Condition goes here; currently will alternate every 64 frames.
  6. BNE reset ;/
  7.  
  8. LDA #$AB ;\ CGADSUB settings.
  9. STA $40 ;/
  10.  
  11. REP #$20
  12. LDA #$FFFF ;\ Make everything black.
  13. STA $0701 ;/
  14. SEP #$20
  15. return:
  16. RTS
  17.  
  18. reset:
  19. REP #$20
  20. LDA !Free ;\ Restore BG color.
  21. STA $0701 ;/
  22. SEP #$20
  23.  
  24. LDA !Free+2 ;\ Restore CGADSUB.
  25. STA $40 ;/
  26. RTS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement