Advertisement
jumpToSubroutine

poke c64 char ROM

Sep 3rd, 2020 (edited)
2,404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1 a% = 24
  2. 2print chr$(147)
  3. 3print "poking char rom bytes.."
  4.  
  5. 4 ad = 53248
  6. 5 for i = 0 to a% step 1
  7. 6      poke ad, i+8
  8. 7      ad = ad + 11
  9. 8 next
  10.  
  11. 9 print chr$(147)
  12.  
  13. 10 ad = 1344
  14. 11 for i =  0 to 255 step 1
  15. 12      poke ad, i
  16. 13     ad = ad + 1
  17. 14 next
  18.  
  19. 15 ad = 55296
  20. 16 for i = 0 to 999 step 1
  21. 17     if x > 255 then x = x - 255
  22. 18     poke ad, x
  23. 19     ad = ad + 53
  24. 20 next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement