Skip to content

Instantly share code, notes, and snippets.

@fu-sen
Last active April 19, 2025 02:37
Show Gist options
  • Save fu-sen/82b16030fd1f3f7269cd02ca6fecefd1 to your computer and use it in GitHub Desktop.
Save fu-sen/82b16030fd1f3f7269cd02ca6fecefd1 to your computer and use it in GitHub Desktop.
' MSX 256 colors | MSX-BASIC
' Copyright (c) 2019 BALLOON | FU-SEN
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019
10 DEFINT A-Z
20 SCREEN 8
30 COLOR 255,0,0
40 FOR Y=0 TO 7
50 FOR X=0 TO 31
60 LINE(X*8,Y*27)-STEP(7,26),Y*32+X,BF
70 NEXT
80 NEXT
90 GOTO 90
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment