altChip

Gay Flag Basic

Apr 6th, 2020
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 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 = 1 : REM Red
  5. 30 COLOR=C
  6. 40 FOR Y = 0 TO 7
  7. 50 HLIN 0, 39 at Y
  8. 60 NEXT
  9.  
  10. 80 X = 9 : REM Orange
  11. 90 COLOR=X
  12. 100 FOR Z = 8 TO 15
  13. 110 HLIN 0, 39 at Z
  14. 120 NEXT Z
  15.  
  16. 140 A = 13 : REM Yellow
  17. 150 COLOR=A
  18. 160 FOR B = 16 TO 23
  19. 170 HLIN 0, 39 at B
  20. 180 NEXT B
  21.  
  22. 200 D = 4 : REM Green
  23. 210 COLOR=D
  24. 220 FOR E = 24 TO 31
  25. 230 HLIN 0, 39 at E
  26. 240 NEXT E
  27.  
  28. 260 D = 2 : REM Blue
  29. 270 COLOR=D
  30. 280 FOR E = 31 TO 38
  31. 290 HLIN 0, 39 at E
  32. 300 NEXT E
  33.  
  34. 320 D = 3 : REM Purple
  35. 340 COLOR=D
  36. 360 FOR E = 39 TO 47
  37. 380 HLIN 0, 39 at E
  38. 400 NEXT E
  39.  
  40. 500 END
Add Comment
Please, Sign In to add comment