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 version 2 | PC-G850 series | z88dk C language | |
| Copyright (c) 2025 BALLOON | FU-SEN | |
| The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| zcc +g800 -create-app -bn balloon2 balloon2.c | |
| --> MON | |
| R | |
| G100 | |
| */ |
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
| /* | |
| zcc +g800 -create-app -bn ledg815 ledg815.c | |
| */ | |
| /* | |
| gprint data | |
| PC-G815 has 6x8 dots (Same as PC-G850) | |
| char balloon[6] = {0x4e, 0x5f, 0x3f, 0x1d, 0x0e, 0x00}; | |
| */ |
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
| /* | |
| zcc +g800 -create-app -bn ledg800 ledg800.c | |
| */ | |
| /* | |
| gprint data | |
| PC-E200/G series other than PC-G815 and PC-G850 have 1 character = 5x7 dots, | |
| so 1 character is 5 bytes, and there is no data between characters. | |
| and 0x80 is not drawn. |
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
| 1 ' Calendar | SHARP POCKET COMPUTER PC-G815 BASIC | |
| 2 ' Copyright (c) 2025 BALLOON | FU-SEN | |
| 3 ' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| 100 CLS :RESTORE :DIM P(19):PX=1:PY=4:C=0 | |
| 110 LINE (56,0)-(87,31),S,BF | |
| 120 LINE (59,0)-(84,30),R,BF | |
| 130 LINE (66,31)-(77,31),R | |
| 140 FOR I=0 TO 19:READ P(I) | |
| 150 Y=INT(I/4):X=I-Y*4 | |
| 160 BL=P(I):GOSUB 520:NEXT I |
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 | PC-E200 / G series | z88dk C language | |
| Copyright (c) 2025 BALLOON | FU-SEN | |
| The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| zcc +g800 -create-app -bn balloons balloons.c | |
| --> MON | |
| R | |
| G100 | |
| */ |
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
| /* | |
| Nyan Cat | PC-G815 (PC-E200 / G series) | z88dk C language | |
| Copyright (c) 2025 BALLOON | FU-SEN | |
| The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| zcc +g800 -create-app -bn nyancat nyancat.c | |
| --> MON | |
| R | |
| G100 | |
| */ |
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
| /* | |
| Nyan Cat | PC-G850 series | z88dk C language | |
| Copyright (c) 2025 BALLOON | FU-SEN | |
| The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| zcc +g800 -create-app -bn nyancat nyancat.c | |
| --> MON | |
| R | |
| G100 | |
| */ |
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
| /* | |
| POKE COM logo | PC-E200 / G series | z88dk C language | |
| Copyright (c) 2025 BALLOON | FU-SEN | |
| The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| zcc +g800 -create-app -bn logo logo.c | |
| --> MON | |
| R | |
| G100 | |
| */ |
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
| 1 ' Sine Curve | SHARP POCKET COMPUTER PC-G815 BASIC | |
| 2 ' Copyright (c) 2025 BALLOON | FU-SEN | |
| 3 ' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| 100 DEGREE | |
| 110 CLS | |
| 120 FOR X=0 TO 143 STEP 2 | |
| 130 PSET (X,16) | |
| 140 NEXT X | |
| 150 O=16 | |
| 160 FOR X=1 TO 143 |
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
| /* | |
| Nyan Cat | z88dk monochrome sprites functions | |
| Copyright (c) 2025 BALLOON | FU-SEN | |
| The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
| Colecovision: | |
| zcc +coleco -create-app -bn nyancat nyancat.c (generate nyancat.rom) | |
| MSX: | |
| zcc +msx -pragma-define:CLIB_DEFAULT_SCREEN_MODE=3 -create-app -bn nyancat nyancat.c (Cassette tape image, generate nyancat.cas) |