jumpToSubroutine

print char set for c64 basic

Sep 2nd, 2020 (edited)
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1 print chr$(147)
  2. 2 input"write backwards or forwards";a%
  3. 3 print chr$(147)
  4. 4 IF a%=1 then 6
  5. 5 IF a%=2 then 12
  6.  
  7. 6 ad% = 1600
  8. 7 for i = 255 to 0 step -1
  9. 8      poke ad%, i
  10. 9      ad% = ad% - 1
  11. 10 next
  12. 11 goto  2
  13.  
  14. 12 ad% = 1344
  15. 13 for i = 0 to 255 step 1
  16. 14        poke ad%, i
  17. 15        ad% = ad% + 1
  18. 16 next
  19. 17 goto 2
Add Comment
Please, Sign In to add comment