Advertisement
atm959

NES Text

Oct 7th, 2018
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     lda #$20
  2.     sta $2006
  3.     lda #$80
  4.     sta $2006
  5.    
  6.     ldy #$00
  7. @placeTextLoop:
  8.     lda Text, y
  9.     cmp #$FF
  10.     beq @donePlacingText
  11.     sta $2007
  12.     tya
  13.     adc #$01
  14.     tay
  15.     jmp @placeTextLoop
  16.  
  17. @donePlacingText:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement