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
runtime: php72 |
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
// IchigoLatte PanCake library | |
// CC0 1.0 Public Domain Dedication - https://creativecommons.org/publicdomain/zero/1.0/ | |
function pc-init(){ | |
uart(10); | |
} | |
function pc-clear(cn){ | |
uart(128,4,0,cn); | |
} |
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
' RANDOM screen | MSX JAPAN top page program 23 May, 2019 | MSX-BASIC | |
' Copyright (c) 2019 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 |
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
' 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 |
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
// Change to font #A0-#DF | C language for IchigoJam (c4ij, IchigoJam BASIC 1.3.2b13+) | |
// Original https://github.com/IchigoJam/c4ij/blob/master/src/main-exkbd.c | |
// Copyright (c) 2019 Taisuke Fukuno / BALLOON | FU-SEN | |
// The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019 | |
#include <std15.h> | |
__attribute__ ((section(".main"))) | |
int main(int param, int ram, int rom, int (*divfunc)()) { | |
int res; |
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
' Change to IchigoJam kana font (Direct) | IchigoJam BASIC 1.3.2b13+ | |
' | |
' Source(#D00-#DFF) https://gist.github.com/fu-sen/21400660612ad674f660b056fb07ece3 | |
' Original https://github.com/IchigoJam/c4ij/blob/master/src/main-exkbd.c | |
' and BASIC Command | |
' Copyright (c) 2019 Taisuke Fukuno / BALLOON | FU-SEN | |
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019 | |
' | |
' IchigoJam Font(#E00-#FFF) https://fukuno.jig.jp/app/IchigoJam/charmap-v12.html | |
' CC BY IchigoJam https://ichigojam.net/ Licensed by jig.jp https://jig.jp/ |
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 |
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
// Balloons | C language for IchigoJam (c4ij, IchigoJam BASIC 1.3.2b12+) | |
// Copyright (c) 2019 BALLOON | FU-SEN | |
// The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019 | |
#include <std15.h> | |
__attribute__ ((section(".main"))) | |
int main(int param, int ram, int rom, int (*divfunc)()) { | |
cls(); |
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
' MSX2+ YJK colors | MSX-BASIC | |
' Copyright (c) 2019-2024 BALLOON | FU-SEN | |
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019-2024 | |
100 DEFINT A-Z | |
110 C=15*8:'Y*8 | |
120 SCREEN 12 | |
130 COLOR 255,0,0 | |
140 FOR J=-32 TO 31 | |
150 X=128+J*256/64 | |
160 LINE(X+2,0)-(X+2,211),C+(J AND 7) |
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
' Balloons | MSX-BASIC | |
' Copyright (c) 2019 BALLOON | FU-SEN | |
' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2019 | |
100 DEFINT A-Z:DIM B(15) | |
110 COLOR 15,1,1:SCREEN 1 | |
120 KEY OFF:WIDTH 32 | |
130 FOR L=0 TO 15 | |
140 READ B(L):NEXT L | |
150 FOR C=2 TO 15 | |
160 FOR L=0 TO 7 |