Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db $42
  2. JMP MarioBelow : JMP Return : JMP Return
  3. JMP Return : JMP Return
  4. JMP Return : JMP Return
  5. JMP Return : JMP Return : JMP Return
  6.  
  7. MarioBelow:
  8.     LDA $7D     ;\ Make sure to check whether Mario is actually hitting the block!
  9.     BPL Return  ;/
  10.     LDA $85     ;\
  11.     EOR #$01    ;| Invert the water level flag.
  12.     STA $85     ;/
  13. Return:
  14.     RTL
  15.  
  16. print "When hit from below, toggles whether the level is a water level or not."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement