Advertisement
altChip

Trans Flag Basic

Apr 6th, 2020
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. 05 REM colors and pixels in low-res mode
  2. 10 GR : POKE 49234,0 : REM low-res mode, full screen mode 40x48
  3.  
  4. 20 C = 6 : REM Blue
  5. 30 COLOR=C
  6. 40 FOR Y = 0 TO 47
  7. 50 HLIN 0, 39 at Y
  8. 60 NEXT
  9.  
  10. 80 X = 11 : REM Pink
  11. 90 COLOR=X
  12. 100 FOR Z = 11 TO 35
  13. 110 HLIN 0, 39 at Z
  14. 120 NEXT Z
  15.  
  16. 140 A = 15 : REM White
  17. 150 COLOR=A
  18. 160 FOR B = 19 TO 27
  19. 170 HLIN 0, 39 at B
  20. 180 NEXT B
  21.  
  22. 200 END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement