Skip to content

Instantly share code, notes, and snippets.

@fu-sen
Last active February 16, 2021 10:36
Show Gist options
  • Save fu-sen/584e8e7c6bffc0bc601c1538db287a06 to your computer and use it in GitHub Desktop.
Save fu-sen/584e8e7c6bffc0bc601c1538db287a06 to your computer and use it in GitHub Desktop.
' RANDOM screen | MSX JAPAN top page program 23 May, 2019 | MSX-BASIC
' Copyright (c) 2019 Keiichi Shiga (BALLOON | FU-SEN)
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019
10 DEFINT A-Z
20 COLOR 15,1,1
30 SCREEN 3
40 X=RND(1)*256
50 Y=RND(1)*192
60 C=RND(1)*15+1
70 PSET(X,Y),C
80 GOTO 40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment