Erik557

Untitled

Jun 10th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. FaceMario:
  2. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  3.  
  4.     LDY #$00
  5.  
  6.     LDA $15AC,x         ;\ Continue if facing time is over
  7.     BEQ .go             ;/
  8.    
  9.     STZ $76             ;\
  10.     STZ $7B             ; | Lock player
  11.     STZ $7D             ;/
  12.  
  13.     LDA #$B5            ;\ Set the player pose
  14.     STA $13E0           ;/
  15.  
  16.     LDA $154C,x
  17.     BEQ +
  18.     RTS
  19. +      
  20.     LDA #$04
  21.     STA $1DF9
  22.    
  23.     LDA $1540,x         ;\ Set X Speed depending on time
  24.     BNE +               ; |
  25.     INY                 ;/
  26. +  
  27.     LDA Yspd,y
  28.     STA $AA,x
  29.     JSL $01802A
  30.     RTS
  31. .go
  32.  
  33.     LDA #$02
  34.     STA $15AC,x
  35.  
  36.     INC $C2,x
  37.    
  38. Return:
  39.     RTS
Add Comment
Please, Sign In to add comment