Last active
April 19, 2025 02:22
-
-
Save fu-sen/50545a53932ff81e666ba3ca0a810841 to your computer and use it in GitHub Desktop.
キャラクターパターン #A0~#DF を #E00~#FFF への POKE で表示 | IchigoJam BASIC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' 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