Skip to content

Instantly share code, notes, and snippets.

@fu-sen
Last active April 19, 2025 02:19
Show Gist options
  • Select an option

  • Save fu-sen/ad3a4217c5e641c09cb12e5e44de9a1c to your computer and use it in GitHub Desktop.

Select an option

Save fu-sen/ad3a4217c5e641c09cb12e5e44de9a1c to your computer and use it in GitHub Desktop.
' Sine curve | MSX-BASIC
' Copyright (c) 2019 BALLOON | FU-SEN
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019
10 COLOR 15,4,7:SCREEN 2
20 LINE(0,96)-(255,96),14
30 FOR X=0 TO 255
40 Y=96*(1-3.1415927*2*X/192)
50 PSET(X,Y),15
60 NEXT X
70 I$=INPUT$(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment