Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save fu-sen/50545a53932ff81e666ba3ca0a810841 to your computer and use it in GitHub Desktop.
キャラクターパターン #A0~#DF を #E00~#FFF への POKE で表示 | IchigoJam BASIC
' Output of IchigoJam Character #A0-#DF | IchigoJam BASIC
' Copyright (c) 2019 BALLOON | FU-SEN
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019
10 A=#E00
20 FOR C=#A0 TO #DF STEP 2
30 IF C%2 GOTO 60
50 ?"POKE#";HEX$(A);:A=A+16
60 FOR D=0 TO 15
70 ?",";PEEK(C*8+D);
80 NEXT
90 ?
100 NEXT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment