├── .gitattributes ├── LICENSE ├── MZ-700-games-project.png ├── MZ-700-games-project.xcf ├── README.md ├── ST-2 ├── README.md ├── bin │ ├── ST-2 0.9.mzt │ ├── ST-2 1.01.mzt │ ├── ST-2 1.10.mzt │ ├── ST-2 1.12.mzt │ ├── ST-2 1.13.mzt │ ├── ST-2 1.14.mzt │ ├── ST-2 1.15-alpha.mzt │ └── ST-2 1.15-alpha.wav ├── game │ ├── cg │ │ ├── cg.cgedit.json │ │ └── cg.cgedit.txt │ ├── depends-cg.mk │ ├── depends-game.mk │ ├── depends-music.mk │ ├── depends-objwoork.mk │ ├── depends-scenes.mk │ ├── depends-system.mk │ ├── depends-text.mk │ ├── img │ │ ├── nwk-cos0-inv1-atb1-score41.png │ │ ├── nwk-cos1-inv1-atb1-score41.png │ │ ├── nwk-dist-inv1-atb1-score41.png │ │ ├── nwk.c │ │ └── nwk.png │ ├── music │ │ ├── clear.dms │ │ ├── clear.mid │ │ ├── end.dms │ │ ├── end.mid │ │ ├── ending-bar8.mid │ │ ├── ending.dms │ │ ├── opening.dms │ │ ├── opening.mid │ │ ├── ronin.dms │ │ ├── ronin.mid │ │ └── test-bar2.dms │ ├── src │ │ ├── build-nr.asm │ │ ├── crt0.asm │ │ ├── game │ │ │ ├── bgm.c │ │ │ ├── bgm.h │ │ │ ├── game-mode.c │ │ │ ├── game-mode.h │ │ │ ├── score.c │ │ │ ├── score.h │ │ │ ├── se.c │ │ │ ├── se.h │ │ │ ├── stage.c │ │ │ ├── stage.h │ │ │ ├── stars.c │ │ │ └── stars.h │ │ ├── objworks │ │ │ ├── obj-enemy-bullet.c │ │ │ ├── obj-enemy-bullet.h │ │ │ ├── obj-enemy.c │ │ │ ├── obj-enemy.h │ │ │ ├── obj-explosion.c │ │ │ ├── obj-explosion.h │ │ │ ├── obj-item.c │ │ │ ├── obj-item.h │ │ │ ├── obj-player-bullet.c │ │ │ ├── obj-player-bullet.h │ │ │ ├── obj-player.c │ │ │ ├── obj-player.h │ │ │ ├── obj-score.c │ │ │ └── obj-score.h │ │ ├── scenes │ │ │ ├── scene-ending.c │ │ │ ├── scene-ending.h │ │ │ ├── scene-game-mode.c │ │ │ ├── scene-game-mode.h │ │ │ ├── scene-game-over.c │ │ │ ├── scene-game-over.h │ │ │ ├── scene-game.c │ │ │ ├── scene-game.h │ │ │ ├── scene-instruction.c │ │ │ ├── scene-instruction.h │ │ │ ├── scene-logo.c │ │ │ ├── scene-logo.h │ │ │ ├── scene-opening.c │ │ │ ├── scene-opening.h │ │ │ ├── scene-score-table.c │ │ │ ├── scene-score-table.h │ │ │ ├── scene-stage-clear.c │ │ │ ├── scene-stage-clear.h │ │ │ ├── scene-title-demo.c │ │ │ ├── scene-title-demo.h │ │ │ ├── scene-title.c │ │ │ └── scene-title.h │ │ └── system │ │ │ ├── addr.h │ │ │ ├── assert.c │ │ │ ├── assert.h │ │ │ ├── input.c │ │ │ ├── input.h │ │ │ ├── input.z80ana.c │ │ │ ├── main.c │ │ │ ├── math.c │ │ │ ├── math.h │ │ │ ├── obj.c │ │ │ ├── obj.h │ │ │ ├── print.c │ │ │ ├── print.h │ │ │ ├── sound.c │ │ │ ├── sound.h │ │ │ ├── sys.c │ │ │ ├── sys.h │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ ├── version.h │ │ │ ├── vram.c │ │ │ └── vram.h │ └── text │ │ ├── clear1.txt │ │ ├── clear2.txt │ │ ├── clear3.txt │ │ ├── clear4.txt │ │ ├── clear5.txt │ │ ├── clear6.txt │ │ ├── clear7.txt │ │ ├── clear8.txt │ │ ├── continue.txt │ │ ├── ending1.txt │ │ ├── ending2.txt │ │ ├── ending3.txt │ │ ├── ending4.txt │ │ ├── ending5.txt │ │ ├── ending6-continue.txt │ │ ├── ending6-enemies.txt │ │ ├── ending6-items.txt │ │ ├── ending6-miss.txt │ │ ├── ending6-survive-time.txt │ │ ├── ending6.txt │ │ ├── finish.txt │ │ ├── game-end.txt │ │ ├── game-mode-back.txt │ │ ├── game-mode-caravan.txt │ │ ├── game-mode-easy.txt │ │ ├── game-mode-hard.txt │ │ ├── game-mode-mubo.txt │ │ ├── game-mode-mz1x03-sensitivity.txt │ │ ├── game-mode-normal.txt │ │ ├── game-mode-survival.txt │ │ ├── game-mode.txt │ │ ├── game-over.txt │ │ ├── game-results.txt │ │ ├── input-am7j.txt │ │ ├── input-mz1x03.txt │ │ ├── joymode-auto-detect.txt │ │ ├── joymode-mz1x03.txt │ │ ├── joymode.txt │ │ ├── key-assign.txt │ │ ├── key-cancel.txt │ │ ├── key-joy.txt │ │ ├── key-move.txt │ │ ├── key-shot.txt │ │ ├── key-start.txt │ │ ├── nwk-presents.txt │ │ ├── opening.txt │ │ ├── tab-level-up.txt │ │ ├── tab-score.txt │ │ ├── tab100.txt │ │ ├── tab150.txt │ │ ├── tab200.txt │ │ ├── tab250.txt │ │ ├── tab300.txt │ │ ├── tab400.txt │ │ ├── title-bonus.txt │ │ ├── title-comma.txt │ │ ├── title-pts.txt │ │ ├── title-snail.txt │ │ └── title-start.txt ├── loader │ ├── crt0.asm │ ├── deexo3.c │ ├── deexo3.h │ └── loader-main.c ├── makefile └── screenshots │ ├── 20250405ChatGPTの考えるST-2(1).jpg │ ├── 20250405ChatGPTの考えるST-2(2).jpg │ ├── 20250405ChatGPTの考えるST-2(3).jpg │ ├── ST-2_1.png │ ├── ST-2_2.png │ ├── ST-2_3.png │ ├── ST-2_4.png │ ├── ST-2むぼう │ ├── ST-2むぼう1.jpg │ └── ST-2むぼう2.jpg │ └── ST-2ジョイスティック改良 │ ├── 20220916AM7J自動判別.png │ ├── 20220924MZ-1X03自動判別も出来た1.png │ ├── 20220924MZ-1X03自動判別も出来た2.png │ ├── 20221005アナログジョイスティックテスト.png │ ├── 20221005アナログジョイスティックテスト1.png │ ├── 20221005アナログジョイスティックテスト2.png │ ├── 20221005アナログジョイスティック信号.png │ ├── 20221005簡易assert追加.png │ └── 20221011ジョイスティック感度追加.png ├── Test ├── README.md └── main.c ├── joystick-mz1x03-test ├── README.md ├── bin │ ├── joystick-mz1x03-test.mzt │ ├── joystick-mz1x03-test.wav │ ├── joystick-mz1x03-test20221005.mzt │ └── joystick-mz1x03-test20241031.mzt ├── crt0.asm ├── joystick-mz1x03-test.png ├── main.c ├── makefile └── mz1x03-timing-chart.png ├── makefile ├── memory-dirtinizer ├── README.md ├── bin │ ├── memory-dirtinizer.mzt │ ├── memory-dirtinizer.wav │ └── memory-dirtinizer20241025.mzt ├── makefile └── memory-dirtinizer.asm ├── ram-check ├── README.md ├── bin │ ├── ram-check.mzt │ └── ram-check.wav ├── makefile ├── ram-check.asm └── ram-check.jpg ├── snail.png ├── sound-test1 ├── README.md ├── addr.h ├── bin │ ├── sound-test1.mzt │ ├── sound-test1.wav │ ├── sound_test1_20220409.mzt │ └── sound_test1_20241031.mzt ├── crt0.asm ├── main.c ├── makefile ├── sound-test1.png ├── sound.c └── sound.h ├── sound-test2 ├── README.md ├── addr.h ├── bin │ ├── sound-test2.mzt │ └── sound-test2.wav ├── crt0.asm ├── main.c ├── makefile ├── sound-test2.png ├── sound.c └── sound.h ├── sound-test3 ├── README.md ├── addr.h ├── bin │ ├── SoundTest3.mzt │ └── SoundTest3.wav ├── crt0.asm ├── depends-music.mk ├── depends-prog.mk ├── main.c ├── makefile ├── music │ ├── chronos.dms │ ├── chronos.h │ ├── chronos.mid │ ├── drum0.txt │ ├── drum1.txt │ ├── drum2.txt │ ├── pulse.txt │ └── sd6-data.h ├── sound-sd6.aal.c ├── sound-sd6.c ├── sound-test3.png └── sound.h ├── sound-test4 ├── README.md ├── addr.h ├── bin │ ├── sound-test4.mzt │ └── sound-test4.wav ├── crt0.asm ├── depends-music.mk ├── depends-prog.mk ├── main.c ├── makefile ├── music │ ├── chronos.dms │ ├── chronos.h │ ├── chronos.mid │ ├── drum1-org.wav │ ├── drum1.bmp │ ├── drum1.h │ ├── drum1.wav │ ├── drum2-org.wav │ ├── drum2.bmp │ ├── drum2.h │ ├── drum2.wav │ ├── drum3-org.wav │ ├── drum3.bmp │ ├── drum3.h │ ├── drum3.wav │ ├── noname.dms │ ├── test.dms │ └── test.mid ├── sound-sd4.aal.c ├── sound-sd4.c ├── sound-test4.png └── sound.h ├── src-common ├── aal80.h ├── asm-macros.h ├── common.h ├── display-code.h └── hard.h ├── test ├── makefile ├── test-sccz ├── test-sccz.mzt ├── test-sdcc └── test-sdcc.mzt └── tools ├── aal80.md ├── aal80.php ├── align256_checker.php ├── bin2c.php ├── bin2code-o.php ├── bin2mzt.php ├── bss-remover.php ├── build-log.php ├── cg-graph.php ├── cgedit2c.php ├── checksum.php ├── count-lines.php ├── inc-buildnr.php ├── insert-buildnr.php ├── make-atan2sin.php ├── make-depend.php ├── map2emuzsym.php ├── meow-wav.php ├── meow.php ├── merger.php ├── mz700fon.dat ├── mzfont2png.php ├── mzt2wav.php ├── not used ├── pdm2c.php └── wav2pdm.php ├── nwk-classes ├── aal │ ├── aal80-param.class.php │ └── aal80-parser.class.php ├── sound │ ├── midi.class.php │ ├── score-merge-utils.class.php │ ├── score-utils.class.php │ ├── score.class.php │ └── wav.class.php └── utils │ ├── error.class.php │ ├── mzt.class.php │ └── utils.class.php ├── packer.php ├── random.php ├── rmf.php ├── salvador.exe ├── sd3-midi-conv.php ├── sd4-midi-conv.php ├── sd4-wav-conv.php ├── sd6-gen-data.php ├── sd6-midi-conv.php ├── sd6-sd4-midi-conv-domino.png ├── sd6-sd4-midi-conv.md ├── size-checker.php ├── size-comparator.php ├── splitter.php ├── test ├── make_db.php ├── make_wav_test1.php ├── make_wav_test2.php ├── make_wav_test3.php ├── math_test.php ├── test1.wav └── test2.wav └── text2c.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/LICENSE -------------------------------------------------------------------------------- /MZ-700-games-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/MZ-700-games-project.png -------------------------------------------------------------------------------- /MZ-700-games-project.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/MZ-700-games-project.xcf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/README.md -------------------------------------------------------------------------------- /ST-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/README.md -------------------------------------------------------------------------------- /ST-2/bin/ST-2 0.9.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 0.9.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.01.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.01.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.10.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.10.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.12.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.12.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.13.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.13.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.14.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.14.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.15-alpha.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.15-alpha.mzt -------------------------------------------------------------------------------- /ST-2/bin/ST-2 1.15-alpha.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/bin/ST-2 1.15-alpha.wav -------------------------------------------------------------------------------- /ST-2/game/cg/cg.cgedit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/cg/cg.cgedit.json -------------------------------------------------------------------------------- /ST-2/game/cg/cg.cgedit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/cg/cg.cgedit.txt -------------------------------------------------------------------------------- /ST-2/game/depends-cg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-cg.mk -------------------------------------------------------------------------------- /ST-2/game/depends-game.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-game.mk -------------------------------------------------------------------------------- /ST-2/game/depends-music.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-music.mk -------------------------------------------------------------------------------- /ST-2/game/depends-objwoork.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-objwoork.mk -------------------------------------------------------------------------------- /ST-2/game/depends-scenes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-scenes.mk -------------------------------------------------------------------------------- /ST-2/game/depends-system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-system.mk -------------------------------------------------------------------------------- /ST-2/game/depends-text.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/depends-text.mk -------------------------------------------------------------------------------- /ST-2/game/img/nwk-cos0-inv1-atb1-score41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/img/nwk-cos0-inv1-atb1-score41.png -------------------------------------------------------------------------------- /ST-2/game/img/nwk-cos1-inv1-atb1-score41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/img/nwk-cos1-inv1-atb1-score41.png -------------------------------------------------------------------------------- /ST-2/game/img/nwk-dist-inv1-atb1-score41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/img/nwk-dist-inv1-atb1-score41.png -------------------------------------------------------------------------------- /ST-2/game/img/nwk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/img/nwk.c -------------------------------------------------------------------------------- /ST-2/game/img/nwk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/img/nwk.png -------------------------------------------------------------------------------- /ST-2/game/music/clear.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/clear.dms -------------------------------------------------------------------------------- /ST-2/game/music/clear.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/clear.mid -------------------------------------------------------------------------------- /ST-2/game/music/end.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/end.dms -------------------------------------------------------------------------------- /ST-2/game/music/end.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/end.mid -------------------------------------------------------------------------------- /ST-2/game/music/ending-bar8.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/ending-bar8.mid -------------------------------------------------------------------------------- /ST-2/game/music/ending.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/ending.dms -------------------------------------------------------------------------------- /ST-2/game/music/opening.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/opening.dms -------------------------------------------------------------------------------- /ST-2/game/music/opening.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/opening.mid -------------------------------------------------------------------------------- /ST-2/game/music/ronin.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/ronin.dms -------------------------------------------------------------------------------- /ST-2/game/music/ronin.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/ronin.mid -------------------------------------------------------------------------------- /ST-2/game/music/test-bar2.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/music/test-bar2.dms -------------------------------------------------------------------------------- /ST-2/game/src/build-nr.asm: -------------------------------------------------------------------------------- 1 | defw 3993 -------------------------------------------------------------------------------- /ST-2/game/src/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/crt0.asm -------------------------------------------------------------------------------- /ST-2/game/src/game/bgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/bgm.c -------------------------------------------------------------------------------- /ST-2/game/src/game/bgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/bgm.h -------------------------------------------------------------------------------- /ST-2/game/src/game/game-mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/game-mode.c -------------------------------------------------------------------------------- /ST-2/game/src/game/game-mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/game-mode.h -------------------------------------------------------------------------------- /ST-2/game/src/game/score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/score.c -------------------------------------------------------------------------------- /ST-2/game/src/game/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/score.h -------------------------------------------------------------------------------- /ST-2/game/src/game/se.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/se.c -------------------------------------------------------------------------------- /ST-2/game/src/game/se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/se.h -------------------------------------------------------------------------------- /ST-2/game/src/game/stage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/stage.c -------------------------------------------------------------------------------- /ST-2/game/src/game/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/stage.h -------------------------------------------------------------------------------- /ST-2/game/src/game/stars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/stars.c -------------------------------------------------------------------------------- /ST-2/game/src/game/stars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/game/stars.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-enemy-bullet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-enemy-bullet.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-enemy-bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-enemy-bullet.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-enemy.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-enemy.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-explosion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-explosion.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-explosion.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-item.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-item.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-player-bullet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-player-bullet.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-player-bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-player-bullet.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-player.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-player.h -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-score.c -------------------------------------------------------------------------------- /ST-2/game/src/objworks/obj-score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/objworks/obj-score.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-ending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-ending.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-ending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-ending.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-game-mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-game-mode.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-game-mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-game-mode.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-game-over.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-game-over.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-game-over.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-game-over.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-game.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-game.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-instruction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-instruction.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-instruction.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-logo.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-logo.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-opening.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-opening.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-opening.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-opening.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-score-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-score-table.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-score-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-score-table.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-stage-clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-stage-clear.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-stage-clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-stage-clear.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-title-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-title-demo.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-title-demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-title-demo.h -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-title.c -------------------------------------------------------------------------------- /ST-2/game/src/scenes/scene-title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/scenes/scene-title.h -------------------------------------------------------------------------------- /ST-2/game/src/system/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/addr.h -------------------------------------------------------------------------------- /ST-2/game/src/system/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/assert.c -------------------------------------------------------------------------------- /ST-2/game/src/system/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/assert.h -------------------------------------------------------------------------------- /ST-2/game/src/system/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/input.c -------------------------------------------------------------------------------- /ST-2/game/src/system/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/input.h -------------------------------------------------------------------------------- /ST-2/game/src/system/input.z80ana.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/input.z80ana.c -------------------------------------------------------------------------------- /ST-2/game/src/system/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/main.c -------------------------------------------------------------------------------- /ST-2/game/src/system/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/math.c -------------------------------------------------------------------------------- /ST-2/game/src/system/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/math.h -------------------------------------------------------------------------------- /ST-2/game/src/system/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/obj.c -------------------------------------------------------------------------------- /ST-2/game/src/system/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/obj.h -------------------------------------------------------------------------------- /ST-2/game/src/system/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/print.c -------------------------------------------------------------------------------- /ST-2/game/src/system/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/print.h -------------------------------------------------------------------------------- /ST-2/game/src/system/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/sound.c -------------------------------------------------------------------------------- /ST-2/game/src/system/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/sound.h -------------------------------------------------------------------------------- /ST-2/game/src/system/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/sys.c -------------------------------------------------------------------------------- /ST-2/game/src/system/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/sys.h -------------------------------------------------------------------------------- /ST-2/game/src/system/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/utils.c -------------------------------------------------------------------------------- /ST-2/game/src/system/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/utils.h -------------------------------------------------------------------------------- /ST-2/game/src/system/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/version.h -------------------------------------------------------------------------------- /ST-2/game/src/system/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/vram.c -------------------------------------------------------------------------------- /ST-2/game/src/system/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/src/system/vram.h -------------------------------------------------------------------------------- /ST-2/game/text/clear1.txt: -------------------------------------------------------------------------------- 1 | NICE FIGHT! 2 | -------------------------------------------------------------------------------- /ST-2/game/text/clear2.txt: -------------------------------------------------------------------------------- 1 | ♦ GOOD JOB! ♦ -------------------------------------------------------------------------------- /ST-2/game/text/clear3.txt: -------------------------------------------------------------------------------- 1 | YOU MADE IT! 2 | -------------------------------------------------------------------------------- /ST-2/game/text/clear4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/clear4.txt -------------------------------------------------------------------------------- /ST-2/game/text/clear5.txt: -------------------------------------------------------------------------------- 1 | YOU DID IT! -------------------------------------------------------------------------------- /ST-2/game/text/clear6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/clear6.txt -------------------------------------------------------------------------------- /ST-2/game/text/clear7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/clear7.txt -------------------------------------------------------------------------------- /ST-2/game/text/clear8.txt: -------------------------------------------------------------------------------- 1 | ごくろうで あった -------------------------------------------------------------------------------- /ST-2/game/text/continue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/continue.txt -------------------------------------------------------------------------------- /ST-2/game/text/ending1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/ending1.txt -------------------------------------------------------------------------------- /ST-2/game/text/ending2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/ending2.txt -------------------------------------------------------------------------------- /ST-2/game/text/ending3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/ending3.txt -------------------------------------------------------------------------------- /ST-2/game/text/ending4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/ending4.txt -------------------------------------------------------------------------------- /ST-2/game/text/ending5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/ending5.txt -------------------------------------------------------------------------------- /ST-2/game/text/ending6-continue.txt: -------------------------------------------------------------------------------- 1 | {col=7}コンティニュー かいすう: -------------------------------------------------------------------------------- /ST-2/game/text/ending6-enemies.txt: -------------------------------------------------------------------------------- 1 | {col=6}たおした てきの かず: 2 | -------------------------------------------------------------------------------- /ST-2/game/text/ending6-items.txt: -------------------------------------------------------------------------------- 1 | {col=4}アイテム かくとくりつ: 2 | -------------------------------------------------------------------------------- /ST-2/game/text/ending6-miss.txt: -------------------------------------------------------------------------------- 1 | {col=5}ミス かいすう: -------------------------------------------------------------------------------- /ST-2/game/text/ending6-survive-time.txt: -------------------------------------------------------------------------------- 1 | {col=2}せいぞんじかん: -------------------------------------------------------------------------------- /ST-2/game/text/ending6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/ending6.txt -------------------------------------------------------------------------------- /ST-2/game/text/finish.txt: -------------------------------------------------------------------------------- 1 | FINISH!! -------------------------------------------------------------------------------- /ST-2/game/text/game-end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-end.txt -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-back.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-mode-back.txt -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-caravan.txt: -------------------------------------------------------------------------------- 1 | {col=4}CARAVAN せんようステージを300秒たたかえ! -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-easy.txt: -------------------------------------------------------------------------------- 1 | {col=5}♥ EASY ♥ LV50からスタート エンディングなし -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-mode-hard.txt -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-mubo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-mode-mubo.txt -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-mz1x03-sensitivity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-mode-mz1x03-sensitivity.txt -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-normal.txt: -------------------------------------------------------------------------------- 1 | {col=7}♣NORMAL♣ さいしょはコレ! -------------------------------------------------------------------------------- /ST-2/game/text/game-mode-survival.txt: -------------------------------------------------------------------------------- 1 | {col=3}SURVIVAL たった1きでHARDにちょうせん! -------------------------------------------------------------------------------- /ST-2/game/text/game-mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-mode.txt -------------------------------------------------------------------------------- /ST-2/game/text/game-over.txt: -------------------------------------------------------------------------------- 1 | {col=7}GAME OVER -------------------------------------------------------------------------------- /ST-2/game/text/game-results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/game-results.txt -------------------------------------------------------------------------------- /ST-2/game/text/input-am7j.txt: -------------------------------------------------------------------------------- 1 | {col=3}AM7J Ready 2 | -------------------------------------------------------------------------------- /ST-2/game/text/input-mz1x03.txt: -------------------------------------------------------------------------------- 1 | {col=3}MZ-1X03 Ready 2 | -------------------------------------------------------------------------------- /ST-2/game/text/joymode-auto-detect.txt: -------------------------------------------------------------------------------- 1 | {col=6}OFF(Auto{lf}detect) -------------------------------------------------------------------------------- /ST-2/game/text/joymode-mz1x03.txt: -------------------------------------------------------------------------------- 1 | {col=6}ON -------------------------------------------------------------------------------- /ST-2/game/text/joymode.txt: -------------------------------------------------------------------------------- 1 | {col=2}Joystick MZ-1X03 Forced: -------------------------------------------------------------------------------- /ST-2/game/text/key-assign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/key-assign.txt -------------------------------------------------------------------------------- /ST-2/game/text/key-cancel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/key-cancel.txt -------------------------------------------------------------------------------- /ST-2/game/text/key-joy.txt: -------------------------------------------------------------------------------- 1 | {col=3}Supports AM7J and MZ-1X03{lf}(Joystick port A, auto detect) 2 | -------------------------------------------------------------------------------- /ST-2/game/text/key-move.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/key-move.txt -------------------------------------------------------------------------------- /ST-2/game/text/key-shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/key-shot.txt -------------------------------------------------------------------------------- /ST-2/game/text/key-start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/key-start.txt -------------------------------------------------------------------------------- /ST-2/game/text/nwk-presents.txt: -------------------------------------------------------------------------------- 1 | {col=7}NWK Presents -------------------------------------------------------------------------------- /ST-2/game/text/opening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/opening.txt -------------------------------------------------------------------------------- /ST-2/game/text/tab-level-up.txt: -------------------------------------------------------------------------------- 1 | ... Level up 10 Pts -------------------------------------------------------------------------------- /ST-2/game/text/tab-score.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/tab-score.txt -------------------------------------------------------------------------------- /ST-2/game/text/tab100.txt: -------------------------------------------------------------------------------- 1 | ... 100 Pts -------------------------------------------------------------------------------- /ST-2/game/text/tab150.txt: -------------------------------------------------------------------------------- 1 | ... 150 Pts -------------------------------------------------------------------------------- /ST-2/game/text/tab200.txt: -------------------------------------------------------------------------------- 1 | ... 200 Pts -------------------------------------------------------------------------------- /ST-2/game/text/tab250.txt: -------------------------------------------------------------------------------- 1 | ... 250 Pts -------------------------------------------------------------------------------- /ST-2/game/text/tab300.txt: -------------------------------------------------------------------------------- 1 | ... 300 Pts -------------------------------------------------------------------------------- /ST-2/game/text/tab400.txt: -------------------------------------------------------------------------------- 1 | ... 400 Pts -------------------------------------------------------------------------------- /ST-2/game/text/title-bonus.txt: -------------------------------------------------------------------------------- 1 | {col=6}Bonus ship will be added at{lf} -------------------------------------------------------------------------------- /ST-2/game/text/title-comma.txt: -------------------------------------------------------------------------------- 1 | 0,{sp} -------------------------------------------------------------------------------- /ST-2/game/text/title-pts.txt: -------------------------------------------------------------------------------- 1 | 0, ... pts -------------------------------------------------------------------------------- /ST-2/game/text/title-snail.txt: -------------------------------------------------------------------------------- 1 | {col=7}(C)SNAIL 2021-2025 -------------------------------------------------------------------------------- /ST-2/game/text/title-start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/game/text/title-start.txt -------------------------------------------------------------------------------- /ST-2/loader/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/loader/crt0.asm -------------------------------------------------------------------------------- /ST-2/loader/deexo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/loader/deexo3.c -------------------------------------------------------------------------------- /ST-2/loader/deexo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/loader/deexo3.h -------------------------------------------------------------------------------- /ST-2/loader/loader-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/loader/loader-main.c -------------------------------------------------------------------------------- /ST-2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/makefile -------------------------------------------------------------------------------- /ST-2/screenshots/20250405ChatGPTの考えるST-2(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/20250405ChatGPTの考えるST-2(1).jpg -------------------------------------------------------------------------------- /ST-2/screenshots/20250405ChatGPTの考えるST-2(2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/20250405ChatGPTの考えるST-2(2).jpg -------------------------------------------------------------------------------- /ST-2/screenshots/20250405ChatGPTの考えるST-2(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/20250405ChatGPTの考えるST-2(3).jpg -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2_1.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2_2.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2_3.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2_4.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2むぼう/ST-2むぼう1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2むぼう/ST-2むぼう1.jpg -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2むぼう/ST-2むぼう2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2むぼう/ST-2むぼう2.jpg -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20220916AM7J自動判別.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20220916AM7J自動判別.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20220924MZ-1X03自動判別も出来た1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20220924MZ-1X03自動判別も出来た1.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20220924MZ-1X03自動判別も出来た2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20220924MZ-1X03自動判別も出来た2.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティックテスト.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティックテスト.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティックテスト1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティックテスト1.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティックテスト2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティックテスト2.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティック信号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20221005アナログジョイスティック信号.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20221005簡易assert追加.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20221005簡易assert追加.png -------------------------------------------------------------------------------- /ST-2/screenshots/ST-2ジョイスティック改良/20221011ジョイスティック感度追加.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ST-2/screenshots/ST-2ジョイスティック改良/20221011ジョイスティック感度追加.png -------------------------------------------------------------------------------- /Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/Test/README.md -------------------------------------------------------------------------------- /Test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/Test/main.c -------------------------------------------------------------------------------- /joystick-mz1x03-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/README.md -------------------------------------------------------------------------------- /joystick-mz1x03-test/bin/joystick-mz1x03-test.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/bin/joystick-mz1x03-test.mzt -------------------------------------------------------------------------------- /joystick-mz1x03-test/bin/joystick-mz1x03-test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/bin/joystick-mz1x03-test.wav -------------------------------------------------------------------------------- /joystick-mz1x03-test/bin/joystick-mz1x03-test20221005.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/bin/joystick-mz1x03-test20221005.mzt -------------------------------------------------------------------------------- /joystick-mz1x03-test/bin/joystick-mz1x03-test20241031.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/bin/joystick-mz1x03-test20241031.mzt -------------------------------------------------------------------------------- /joystick-mz1x03-test/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/crt0.asm -------------------------------------------------------------------------------- /joystick-mz1x03-test/joystick-mz1x03-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/joystick-mz1x03-test.png -------------------------------------------------------------------------------- /joystick-mz1x03-test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/main.c -------------------------------------------------------------------------------- /joystick-mz1x03-test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/makefile -------------------------------------------------------------------------------- /joystick-mz1x03-test/mz1x03-timing-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/joystick-mz1x03-test/mz1x03-timing-chart.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/makefile -------------------------------------------------------------------------------- /memory-dirtinizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/memory-dirtinizer/README.md -------------------------------------------------------------------------------- /memory-dirtinizer/bin/memory-dirtinizer.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/memory-dirtinizer/bin/memory-dirtinizer.mzt -------------------------------------------------------------------------------- /memory-dirtinizer/bin/memory-dirtinizer.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/memory-dirtinizer/bin/memory-dirtinizer.wav -------------------------------------------------------------------------------- /memory-dirtinizer/bin/memory-dirtinizer20241025.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/memory-dirtinizer/bin/memory-dirtinizer20241025.mzt -------------------------------------------------------------------------------- /memory-dirtinizer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/memory-dirtinizer/makefile -------------------------------------------------------------------------------- /memory-dirtinizer/memory-dirtinizer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/memory-dirtinizer/memory-dirtinizer.asm -------------------------------------------------------------------------------- /ram-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ram-check/README.md -------------------------------------------------------------------------------- /ram-check/bin/ram-check.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ram-check/bin/ram-check.mzt -------------------------------------------------------------------------------- /ram-check/bin/ram-check.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ram-check/bin/ram-check.wav -------------------------------------------------------------------------------- /ram-check/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ram-check/makefile -------------------------------------------------------------------------------- /ram-check/ram-check.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ram-check/ram-check.asm -------------------------------------------------------------------------------- /ram-check/ram-check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/ram-check/ram-check.jpg -------------------------------------------------------------------------------- /snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/snail.png -------------------------------------------------------------------------------- /sound-test1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/README.md -------------------------------------------------------------------------------- /sound-test1/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/addr.h -------------------------------------------------------------------------------- /sound-test1/bin/sound-test1.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/bin/sound-test1.mzt -------------------------------------------------------------------------------- /sound-test1/bin/sound-test1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/bin/sound-test1.wav -------------------------------------------------------------------------------- /sound-test1/bin/sound_test1_20220409.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/bin/sound_test1_20220409.mzt -------------------------------------------------------------------------------- /sound-test1/bin/sound_test1_20241031.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/bin/sound_test1_20241031.mzt -------------------------------------------------------------------------------- /sound-test1/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/crt0.asm -------------------------------------------------------------------------------- /sound-test1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/main.c -------------------------------------------------------------------------------- /sound-test1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/makefile -------------------------------------------------------------------------------- /sound-test1/sound-test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/sound-test1.png -------------------------------------------------------------------------------- /sound-test1/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/sound.c -------------------------------------------------------------------------------- /sound-test1/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test1/sound.h -------------------------------------------------------------------------------- /sound-test2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/README.md -------------------------------------------------------------------------------- /sound-test2/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/addr.h -------------------------------------------------------------------------------- /sound-test2/bin/sound-test2.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/bin/sound-test2.mzt -------------------------------------------------------------------------------- /sound-test2/bin/sound-test2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/bin/sound-test2.wav -------------------------------------------------------------------------------- /sound-test2/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/crt0.asm -------------------------------------------------------------------------------- /sound-test2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/main.c -------------------------------------------------------------------------------- /sound-test2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/makefile -------------------------------------------------------------------------------- /sound-test2/sound-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/sound-test2.png -------------------------------------------------------------------------------- /sound-test2/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/sound.c -------------------------------------------------------------------------------- /sound-test2/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test2/sound.h -------------------------------------------------------------------------------- /sound-test3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/README.md -------------------------------------------------------------------------------- /sound-test3/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/addr.h -------------------------------------------------------------------------------- /sound-test3/bin/SoundTest3.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/bin/SoundTest3.mzt -------------------------------------------------------------------------------- /sound-test3/bin/SoundTest3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/bin/SoundTest3.wav -------------------------------------------------------------------------------- /sound-test3/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/crt0.asm -------------------------------------------------------------------------------- /sound-test3/depends-music.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/depends-music.mk -------------------------------------------------------------------------------- /sound-test3/depends-prog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/depends-prog.mk -------------------------------------------------------------------------------- /sound-test3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/main.c -------------------------------------------------------------------------------- /sound-test3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/makefile -------------------------------------------------------------------------------- /sound-test3/music/chronos.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/chronos.dms -------------------------------------------------------------------------------- /sound-test3/music/chronos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/chronos.h -------------------------------------------------------------------------------- /sound-test3/music/chronos.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/chronos.mid -------------------------------------------------------------------------------- /sound-test3/music/drum0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/drum0.txt -------------------------------------------------------------------------------- /sound-test3/music/drum1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/drum1.txt -------------------------------------------------------------------------------- /sound-test3/music/drum2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/drum2.txt -------------------------------------------------------------------------------- /sound-test3/music/pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/pulse.txt -------------------------------------------------------------------------------- /sound-test3/music/sd6-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/music/sd6-data.h -------------------------------------------------------------------------------- /sound-test3/sound-sd6.aal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/sound-sd6.aal.c -------------------------------------------------------------------------------- /sound-test3/sound-sd6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/sound-sd6.c -------------------------------------------------------------------------------- /sound-test3/sound-test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/sound-test3.png -------------------------------------------------------------------------------- /sound-test3/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test3/sound.h -------------------------------------------------------------------------------- /sound-test4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/README.md -------------------------------------------------------------------------------- /sound-test4/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/addr.h -------------------------------------------------------------------------------- /sound-test4/bin/sound-test4.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/bin/sound-test4.mzt -------------------------------------------------------------------------------- /sound-test4/bin/sound-test4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/bin/sound-test4.wav -------------------------------------------------------------------------------- /sound-test4/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/crt0.asm -------------------------------------------------------------------------------- /sound-test4/depends-music.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/depends-music.mk -------------------------------------------------------------------------------- /sound-test4/depends-prog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/depends-prog.mk -------------------------------------------------------------------------------- /sound-test4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/main.c -------------------------------------------------------------------------------- /sound-test4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/makefile -------------------------------------------------------------------------------- /sound-test4/music/chronos.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/chronos.dms -------------------------------------------------------------------------------- /sound-test4/music/chronos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/chronos.h -------------------------------------------------------------------------------- /sound-test4/music/chronos.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/chronos.mid -------------------------------------------------------------------------------- /sound-test4/music/drum1-org.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum1-org.wav -------------------------------------------------------------------------------- /sound-test4/music/drum1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum1.bmp -------------------------------------------------------------------------------- /sound-test4/music/drum1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum1.h -------------------------------------------------------------------------------- /sound-test4/music/drum1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum1.wav -------------------------------------------------------------------------------- /sound-test4/music/drum2-org.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum2-org.wav -------------------------------------------------------------------------------- /sound-test4/music/drum2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum2.bmp -------------------------------------------------------------------------------- /sound-test4/music/drum2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum2.h -------------------------------------------------------------------------------- /sound-test4/music/drum2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum2.wav -------------------------------------------------------------------------------- /sound-test4/music/drum3-org.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum3-org.wav -------------------------------------------------------------------------------- /sound-test4/music/drum3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum3.bmp -------------------------------------------------------------------------------- /sound-test4/music/drum3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum3.h -------------------------------------------------------------------------------- /sound-test4/music/drum3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/drum3.wav -------------------------------------------------------------------------------- /sound-test4/music/noname.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/noname.dms -------------------------------------------------------------------------------- /sound-test4/music/test.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/test.dms -------------------------------------------------------------------------------- /sound-test4/music/test.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/music/test.mid -------------------------------------------------------------------------------- /sound-test4/sound-sd4.aal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/sound-sd4.aal.c -------------------------------------------------------------------------------- /sound-test4/sound-sd4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/sound-sd4.c -------------------------------------------------------------------------------- /sound-test4/sound-test4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/sound-test4.png -------------------------------------------------------------------------------- /sound-test4/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/sound-test4/sound.h -------------------------------------------------------------------------------- /src-common/aal80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/src-common/aal80.h -------------------------------------------------------------------------------- /src-common/asm-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/src-common/asm-macros.h -------------------------------------------------------------------------------- /src-common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/src-common/common.h -------------------------------------------------------------------------------- /src-common/display-code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/src-common/display-code.h -------------------------------------------------------------------------------- /src-common/hard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/src-common/hard.h -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/test/makefile -------------------------------------------------------------------------------- /test/test-sccz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/test/test-sccz -------------------------------------------------------------------------------- /test/test-sccz.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/test/test-sccz.mzt -------------------------------------------------------------------------------- /test/test-sdcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/test/test-sdcc -------------------------------------------------------------------------------- /test/test-sdcc.mzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/test/test-sdcc.mzt -------------------------------------------------------------------------------- /tools/aal80.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/aal80.md -------------------------------------------------------------------------------- /tools/aal80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/aal80.php -------------------------------------------------------------------------------- /tools/align256_checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/align256_checker.php -------------------------------------------------------------------------------- /tools/bin2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/bin2c.php -------------------------------------------------------------------------------- /tools/bin2code-o.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/bin2code-o.php -------------------------------------------------------------------------------- /tools/bin2mzt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/bin2mzt.php -------------------------------------------------------------------------------- /tools/bss-remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/bss-remover.php -------------------------------------------------------------------------------- /tools/build-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/build-log.php -------------------------------------------------------------------------------- /tools/cg-graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/cg-graph.php -------------------------------------------------------------------------------- /tools/cgedit2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/cgedit2c.php -------------------------------------------------------------------------------- /tools/checksum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/checksum.php -------------------------------------------------------------------------------- /tools/count-lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/count-lines.php -------------------------------------------------------------------------------- /tools/inc-buildnr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/inc-buildnr.php -------------------------------------------------------------------------------- /tools/insert-buildnr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/insert-buildnr.php -------------------------------------------------------------------------------- /tools/make-atan2sin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/make-atan2sin.php -------------------------------------------------------------------------------- /tools/make-depend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/make-depend.php -------------------------------------------------------------------------------- /tools/map2emuzsym.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/map2emuzsym.php -------------------------------------------------------------------------------- /tools/meow-wav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/meow-wav.php -------------------------------------------------------------------------------- /tools/meow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/meow.php -------------------------------------------------------------------------------- /tools/merger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/merger.php -------------------------------------------------------------------------------- /tools/mz700fon.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/mz700fon.dat -------------------------------------------------------------------------------- /tools/mzfont2png.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/mzfont2png.php -------------------------------------------------------------------------------- /tools/mzt2wav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/mzt2wav.php -------------------------------------------------------------------------------- /tools/not used/pdm2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/not used/pdm2c.php -------------------------------------------------------------------------------- /tools/not used/wav2pdm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/not used/wav2pdm.php -------------------------------------------------------------------------------- /tools/nwk-classes/aal/aal80-param.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/aal/aal80-param.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/aal/aal80-parser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/aal/aal80-parser.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/sound/midi.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/sound/midi.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/sound/score-merge-utils.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/sound/score-merge-utils.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/sound/score-utils.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/sound/score-utils.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/sound/score.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/sound/score.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/sound/wav.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/sound/wav.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/utils/error.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/utils/error.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/utils/mzt.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/utils/mzt.class.php -------------------------------------------------------------------------------- /tools/nwk-classes/utils/utils.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/nwk-classes/utils/utils.class.php -------------------------------------------------------------------------------- /tools/packer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/packer.php -------------------------------------------------------------------------------- /tools/random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/random.php -------------------------------------------------------------------------------- /tools/rmf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/rmf.php -------------------------------------------------------------------------------- /tools/salvador.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/salvador.exe -------------------------------------------------------------------------------- /tools/sd3-midi-conv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd3-midi-conv.php -------------------------------------------------------------------------------- /tools/sd4-midi-conv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd4-midi-conv.php -------------------------------------------------------------------------------- /tools/sd4-wav-conv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd4-wav-conv.php -------------------------------------------------------------------------------- /tools/sd6-gen-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd6-gen-data.php -------------------------------------------------------------------------------- /tools/sd6-midi-conv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd6-midi-conv.php -------------------------------------------------------------------------------- /tools/sd6-sd4-midi-conv-domino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd6-sd4-midi-conv-domino.png -------------------------------------------------------------------------------- /tools/sd6-sd4-midi-conv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/sd6-sd4-midi-conv.md -------------------------------------------------------------------------------- /tools/size-checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/size-checker.php -------------------------------------------------------------------------------- /tools/size-comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/size-comparator.php -------------------------------------------------------------------------------- /tools/splitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/splitter.php -------------------------------------------------------------------------------- /tools/test/make_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/make_db.php -------------------------------------------------------------------------------- /tools/test/make_wav_test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/make_wav_test1.php -------------------------------------------------------------------------------- /tools/test/make_wav_test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/make_wav_test2.php -------------------------------------------------------------------------------- /tools/test/make_wav_test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/make_wav_test3.php -------------------------------------------------------------------------------- /tools/test/math_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/math_test.php -------------------------------------------------------------------------------- /tools/test/test1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/test1.wav -------------------------------------------------------------------------------- /tools/test/test2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/test/test2.wav -------------------------------------------------------------------------------- /tools/text2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnailBarbarianMacho/MZ-700GamesProject/HEAD/tools/text2c.php --------------------------------------------------------------------------------