├── .gitignore ├── .vscode └── launch.json ├── Makefile ├── README.md ├── bin ├── hmckc.exe ├── hmckc_j.exe ├── isolink.exe ├── pceas.exe └── xpcm.exe ├── c_test ├── clean.bat ├── huc_iso_memo.txt ├── husic_wav.cue ├── ldr.c ├── main_ovl.c ├── make_c.bat └── track01.ogg ├── docs ├── changelog.txt ├── develop.md ├── hmckc.txt ├── husic.txt └── husic_tech.md ├── hescode ├── main.s ├── makehes.s ├── makepce.s ├── startup.asm ├── sup_hes.asm └── sup_pce.asm ├── include ├── overlay.h └── pce │ ├── cdrom.asm │ ├── cdrom.inc │ ├── equ.inc │ ├── font.inc │ ├── func.inc │ ├── huc.asm │ ├── huc.h │ ├── huc.inc │ ├── huc_bram.asm │ ├── huc_gfx.asm │ ├── huc_math.asm │ ├── huc_misc.asm │ ├── huc_opt.inc │ ├── ipl.bin │ ├── joypad.asm │ ├── library.asm │ ├── library.inc │ ├── macro.inc │ ├── math.asm │ ├── mouse.asm │ ├── scroll.asm │ ├── sound.asm │ ├── sound.inc │ ├── sprites.inc │ ├── standard.inc │ ├── startup.asm │ ├── startup.inc │ ├── system.inc │ └── vdc.inc ├── isomake ├── clean.bat ├── husic.iso ├── husic_wav.cue ├── iso.cue ├── iso_wav.cue ├── ldr.ovl ├── make_iso.bat ├── make_iso.sh ├── makepce.s └── track01.ogg ├── rommake ├── make_pce.bat └── make_pce.sh ├── songs ├── Makefile ├── bank01.mml ├── make_hes.bat ├── make_hes.sh ├── make_hes_multi.bat ├── make_pce.bat ├── make_pce.sh ├── make_pce_multi.bat ├── pcm.pd4 ├── sample.mml ├── sample_mv.mml ├── sample_panenv.mml ├── sample_pcmchg.mml ├── sample_port.mml ├── sample_slar.mml ├── sample_te.mml └── sample_xpcm.mml ├── src ├── hmckc │ └── src │ │ ├── Makefile │ │ ├── Makefile.w32 │ │ ├── common.mak │ │ ├── datamake.c │ │ ├── file.c │ │ ├── mckc.c │ │ ├── mckc.h │ │ ├── strings.c │ │ └── version.c ├── huc │ ├── Makefile │ ├── doc │ │ ├── huc │ │ │ ├── clibref.htm │ │ │ ├── clibref.txt │ │ │ ├── clibref_fr.htm │ │ │ ├── clibref_fr.txt │ │ │ ├── huc_doc.htm │ │ │ ├── mmldoc.txt │ │ │ ├── overlays.txt │ │ │ └── random.txt │ │ ├── nes │ │ │ ├── cpu_inst.txt │ │ │ ├── history.txt │ │ │ ├── index.txt │ │ │ ├── neshdr20.txt │ │ │ └── usage.txt │ │ └── pce │ │ │ ├── concepts.txt │ │ │ ├── cpu.txt │ │ │ ├── cpu_inst.txt │ │ │ ├── history.txt │ │ │ ├── index.txt │ │ │ ├── library.txt │ │ │ ├── psg.txt │ │ │ ├── sprites.txt │ │ │ ├── techdoc.txt │ │ │ ├── usage.txt │ │ │ ├── vce.txt │ │ │ └── vdc.txt │ ├── include │ │ ├── overlay.h │ │ └── pce │ │ │ ├── cdrom.asm │ │ │ ├── cdrom.inc │ │ │ ├── equ.inc │ │ │ ├── font.inc │ │ │ ├── func.inc │ │ │ ├── huc.asm │ │ │ ├── huc.h │ │ │ ├── huc.inc │ │ │ ├── huc_bram.asm │ │ │ ├── huc_gfx.asm │ │ │ ├── huc_math.asm │ │ │ ├── huc_misc.asm │ │ │ ├── huc_opt.inc │ │ │ ├── ipl.bin │ │ │ ├── joypad.asm │ │ │ ├── library.asm │ │ │ ├── library.inc │ │ │ ├── macro.inc │ │ │ ├── math.asm │ │ │ ├── mouse.asm │ │ │ ├── scroll.asm │ │ │ ├── sound.asm │ │ │ ├── sound.inc │ │ │ ├── sprites.inc │ │ │ ├── standard.inc │ │ │ ├── startup.asm │ │ │ ├── startup.inc │ │ │ ├── system.inc │ │ │ └── vdc.inc │ ├── src │ │ ├── Make_src.inc │ │ ├── Makefile │ │ ├── Maketarg.inc │ │ ├── huc │ │ │ ├── Makefile │ │ │ ├── code.c │ │ │ ├── code.h │ │ │ ├── const.c │ │ │ ├── const.h │ │ │ ├── data.c │ │ │ ├── data.h │ │ │ ├── defs.h │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── expr.c │ │ │ ├── expr.h │ │ │ ├── function.c │ │ │ ├── function.h │ │ │ ├── gen.c │ │ │ ├── gen.h │ │ │ ├── io.c │ │ │ ├── io.h │ │ │ ├── lex.c │ │ │ ├── lex.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── optimize.c │ │ │ ├── optimize.h │ │ │ ├── pragma.c │ │ │ ├── pragma.h │ │ │ ├── preproc.c │ │ │ ├── preproc.h │ │ │ ├── primary.c │ │ │ ├── primary.h │ │ │ ├── pseudo.c │ │ │ ├── pseudo.h │ │ │ ├── stmt.c │ │ │ ├── stmt.h │ │ │ ├── sym.c │ │ │ ├── sym.h │ │ │ ├── while.c │ │ │ └── while.h │ │ ├── isolink │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ └── main.h │ │ ├── mkit │ │ │ ├── Makefile │ │ │ ├── as │ │ │ │ ├── Makefile │ │ │ │ ├── assemble.c │ │ │ │ ├── code.c │ │ │ │ ├── command.c │ │ │ │ ├── crc.c │ │ │ │ ├── defs.h │ │ │ │ ├── expr.c │ │ │ │ ├── expr.h │ │ │ │ ├── externs.h │ │ │ │ ├── func.c │ │ │ │ ├── input.c │ │ │ │ ├── inst.h │ │ │ │ ├── macro.c │ │ │ │ ├── main.c │ │ │ │ ├── map.c │ │ │ │ ├── mml.c │ │ │ │ ├── nes.c │ │ │ │ ├── nes.h │ │ │ │ ├── output.c │ │ │ │ ├── pce.c │ │ │ │ ├── pce.h │ │ │ │ ├── pcx.c │ │ │ │ ├── proc.c │ │ │ │ ├── protos.h │ │ │ │ ├── symbol.c │ │ │ │ └── vars.h │ │ │ ├── develo │ │ │ │ ├── Makefile │ │ │ │ ├── develo.h │ │ │ │ ├── execmx.c │ │ │ │ ├── getrom.c │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── command.c │ │ │ │ │ ├── crc16.h │ │ │ │ │ ├── develo.h │ │ │ │ │ ├── error.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── mx.c │ │ │ │ │ ├── slave.c │ │ │ │ │ └── xfer.c │ │ │ │ └── perun.c │ │ │ ├── index.txt │ │ │ └── readme.txt │ │ └── tools │ │ │ ├── Makefile │ │ │ ├── mod2mml │ │ │ └── Makefile │ │ │ └── pcxtool │ │ │ ├── Makefile │ │ │ └── pcxtool.c │ ├── things.todo │ └── whats.new ├── husic │ ├── LICENSE.txt │ ├── compile.bat │ ├── compile.sh │ ├── compile_dbg.sh │ ├── ftable.h │ ├── hus.c │ ├── main.c │ ├── title.h │ └── xpcmdrv.c └── wav2pd4 │ ├── Makefile │ ├── Makefile.w32 │ ├── compile.bat │ ├── compile.sh │ ├── xpcm.c │ └── xpcm.txt └── tests ├── Makefile ├── clean.sh ├── fmlfo.mml ├── multi01.mml ├── multi02.mml ├── multi03.mml ├── output ├── fmlfo.hes ├── multi01.hes ├── multi01.pce ├── test01.hes ├── test02.hes ├── test02_5b.hes ├── test03.hes ├── test04.hes └── test05.hes ├── pd4wav.py ├── test.bat ├── test.sh ├── test01.mml ├── test02.mml ├── test02_5b.mml ├── test03.mml ├── test04.mml ├── test05.mml ├── tone.pd4 ├── tone.pd5 ├── tone.pd8 ├── tone.wav └── tone_orig.wav /.gitignore: -------------------------------------------------------------------------------- 1 | bin/huc.exe 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/README.md -------------------------------------------------------------------------------- /bin/hmckc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/bin/hmckc.exe -------------------------------------------------------------------------------- /bin/hmckc_j.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/bin/hmckc_j.exe -------------------------------------------------------------------------------- /bin/isolink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/bin/isolink.exe -------------------------------------------------------------------------------- /bin/pceas.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/bin/pceas.exe -------------------------------------------------------------------------------- /bin/xpcm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/bin/xpcm.exe -------------------------------------------------------------------------------- /c_test/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/clean.bat -------------------------------------------------------------------------------- /c_test/huc_iso_memo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/huc_iso_memo.txt -------------------------------------------------------------------------------- /c_test/husic_wav.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/husic_wav.cue -------------------------------------------------------------------------------- /c_test/ldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/ldr.c -------------------------------------------------------------------------------- /c_test/main_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/main_ovl.c -------------------------------------------------------------------------------- /c_test/make_c.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/make_c.bat -------------------------------------------------------------------------------- /c_test/track01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/c_test/track01.ogg -------------------------------------------------------------------------------- /docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/docs/changelog.txt -------------------------------------------------------------------------------- /docs/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/docs/develop.md -------------------------------------------------------------------------------- /docs/hmckc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/docs/hmckc.txt -------------------------------------------------------------------------------- /docs/husic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/docs/husic.txt -------------------------------------------------------------------------------- /docs/husic_tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/docs/husic_tech.md -------------------------------------------------------------------------------- /hescode/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/hescode/main.s -------------------------------------------------------------------------------- /hescode/makehes.s: -------------------------------------------------------------------------------- 1 | MAKE_HES = 1 2 | .include "main.s" 3 | -------------------------------------------------------------------------------- /hescode/makepce.s: -------------------------------------------------------------------------------- 1 | MAKE_PCE = 1 2 | .include "main.s" 3 | -------------------------------------------------------------------------------- /hescode/startup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/hescode/startup.asm -------------------------------------------------------------------------------- /hescode/sup_hes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/hescode/sup_hes.asm -------------------------------------------------------------------------------- /hescode/sup_pce.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/hescode/sup_pce.asm -------------------------------------------------------------------------------- /include/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/overlay.h -------------------------------------------------------------------------------- /include/pce/cdrom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/cdrom.asm -------------------------------------------------------------------------------- /include/pce/cdrom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/cdrom.inc -------------------------------------------------------------------------------- /include/pce/equ.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/equ.inc -------------------------------------------------------------------------------- /include/pce/font.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/font.inc -------------------------------------------------------------------------------- /include/pce/func.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/func.inc -------------------------------------------------------------------------------- /include/pce/huc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc.asm -------------------------------------------------------------------------------- /include/pce/huc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc.h -------------------------------------------------------------------------------- /include/pce/huc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc.inc -------------------------------------------------------------------------------- /include/pce/huc_bram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc_bram.asm -------------------------------------------------------------------------------- /include/pce/huc_gfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc_gfx.asm -------------------------------------------------------------------------------- /include/pce/huc_math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc_math.asm -------------------------------------------------------------------------------- /include/pce/huc_misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc_misc.asm -------------------------------------------------------------------------------- /include/pce/huc_opt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/huc_opt.inc -------------------------------------------------------------------------------- /include/pce/ipl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/ipl.bin -------------------------------------------------------------------------------- /include/pce/joypad.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/joypad.asm -------------------------------------------------------------------------------- /include/pce/library.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/library.asm -------------------------------------------------------------------------------- /include/pce/library.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/library.inc -------------------------------------------------------------------------------- /include/pce/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/macro.inc -------------------------------------------------------------------------------- /include/pce/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/math.asm -------------------------------------------------------------------------------- /include/pce/mouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/mouse.asm -------------------------------------------------------------------------------- /include/pce/scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/scroll.asm -------------------------------------------------------------------------------- /include/pce/sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/sound.asm -------------------------------------------------------------------------------- /include/pce/sound.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/sound.inc -------------------------------------------------------------------------------- /include/pce/sprites.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/sprites.inc -------------------------------------------------------------------------------- /include/pce/standard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/standard.inc -------------------------------------------------------------------------------- /include/pce/startup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/startup.asm -------------------------------------------------------------------------------- /include/pce/startup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/startup.inc -------------------------------------------------------------------------------- /include/pce/system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/system.inc -------------------------------------------------------------------------------- /include/pce/vdc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/include/pce/vdc.inc -------------------------------------------------------------------------------- /isomake/clean.bat: -------------------------------------------------------------------------------- 1 | del *.iso 2 | -------------------------------------------------------------------------------- /isomake/husic.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/husic.iso -------------------------------------------------------------------------------- /isomake/husic_wav.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/husic_wav.cue -------------------------------------------------------------------------------- /isomake/iso.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/iso.cue -------------------------------------------------------------------------------- /isomake/iso_wav.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/iso_wav.cue -------------------------------------------------------------------------------- /isomake/ldr.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/ldr.ovl -------------------------------------------------------------------------------- /isomake/make_iso.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/make_iso.bat -------------------------------------------------------------------------------- /isomake/make_iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/make_iso.sh -------------------------------------------------------------------------------- /isomake/makepce.s: -------------------------------------------------------------------------------- 1 | MAKE_PCE = 1 2 | .include "main.s" 3 | -------------------------------------------------------------------------------- /isomake/track01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/isomake/track01.ogg -------------------------------------------------------------------------------- /rommake/make_pce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/rommake/make_pce.bat -------------------------------------------------------------------------------- /rommake/make_pce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/rommake/make_pce.sh -------------------------------------------------------------------------------- /songs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/Makefile -------------------------------------------------------------------------------- /songs/bank01.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/bank01.mml -------------------------------------------------------------------------------- /songs/make_hes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/make_hes.bat -------------------------------------------------------------------------------- /songs/make_hes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/make_hes.sh -------------------------------------------------------------------------------- /songs/make_hes_multi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/make_hes_multi.bat -------------------------------------------------------------------------------- /songs/make_pce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/make_pce.bat -------------------------------------------------------------------------------- /songs/make_pce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/make_pce.sh -------------------------------------------------------------------------------- /songs/make_pce_multi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/make_pce_multi.bat -------------------------------------------------------------------------------- /songs/pcm.pd4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/pcm.pd4 -------------------------------------------------------------------------------- /songs/sample.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample.mml -------------------------------------------------------------------------------- /songs/sample_mv.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_mv.mml -------------------------------------------------------------------------------- /songs/sample_panenv.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_panenv.mml -------------------------------------------------------------------------------- /songs/sample_pcmchg.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_pcmchg.mml -------------------------------------------------------------------------------- /songs/sample_port.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_port.mml -------------------------------------------------------------------------------- /songs/sample_slar.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_slar.mml -------------------------------------------------------------------------------- /songs/sample_te.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_te.mml -------------------------------------------------------------------------------- /songs/sample_xpcm.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/songs/sample_xpcm.mml -------------------------------------------------------------------------------- /src/hmckc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/Makefile -------------------------------------------------------------------------------- /src/hmckc/src/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/Makefile.w32 -------------------------------------------------------------------------------- /src/hmckc/src/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/common.mak -------------------------------------------------------------------------------- /src/hmckc/src/datamake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/datamake.c -------------------------------------------------------------------------------- /src/hmckc/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/file.c -------------------------------------------------------------------------------- /src/hmckc/src/mckc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/mckc.c -------------------------------------------------------------------------------- /src/hmckc/src/mckc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/mckc.h -------------------------------------------------------------------------------- /src/hmckc/src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/strings.c -------------------------------------------------------------------------------- /src/hmckc/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/hmckc/src/version.c -------------------------------------------------------------------------------- /src/huc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/Makefile -------------------------------------------------------------------------------- /src/huc/doc/huc/clibref.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/clibref.htm -------------------------------------------------------------------------------- /src/huc/doc/huc/clibref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/clibref.txt -------------------------------------------------------------------------------- /src/huc/doc/huc/clibref_fr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/clibref_fr.htm -------------------------------------------------------------------------------- /src/huc/doc/huc/clibref_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/clibref_fr.txt -------------------------------------------------------------------------------- /src/huc/doc/huc/huc_doc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/huc_doc.htm -------------------------------------------------------------------------------- /src/huc/doc/huc/mmldoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/mmldoc.txt -------------------------------------------------------------------------------- /src/huc/doc/huc/overlays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/overlays.txt -------------------------------------------------------------------------------- /src/huc/doc/huc/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/huc/random.txt -------------------------------------------------------------------------------- /src/huc/doc/nes/cpu_inst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/nes/cpu_inst.txt -------------------------------------------------------------------------------- /src/huc/doc/nes/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/nes/history.txt -------------------------------------------------------------------------------- /src/huc/doc/nes/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/nes/index.txt -------------------------------------------------------------------------------- /src/huc/doc/nes/neshdr20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/nes/neshdr20.txt -------------------------------------------------------------------------------- /src/huc/doc/nes/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/nes/usage.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/concepts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/concepts.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/cpu.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/cpu_inst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/cpu_inst.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/history.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/index.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/library.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/psg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/psg.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/sprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/sprites.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/techdoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/techdoc.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/usage.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/vce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/vce.txt -------------------------------------------------------------------------------- /src/huc/doc/pce/vdc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/doc/pce/vdc.txt -------------------------------------------------------------------------------- /src/huc/include/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/overlay.h -------------------------------------------------------------------------------- /src/huc/include/pce/cdrom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/cdrom.asm -------------------------------------------------------------------------------- /src/huc/include/pce/cdrom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/cdrom.inc -------------------------------------------------------------------------------- /src/huc/include/pce/equ.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/equ.inc -------------------------------------------------------------------------------- /src/huc/include/pce/font.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/font.inc -------------------------------------------------------------------------------- /src/huc/include/pce/func.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/func.inc -------------------------------------------------------------------------------- /src/huc/include/pce/huc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc.asm -------------------------------------------------------------------------------- /src/huc/include/pce/huc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc.h -------------------------------------------------------------------------------- /src/huc/include/pce/huc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc.inc -------------------------------------------------------------------------------- /src/huc/include/pce/huc_bram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc_bram.asm -------------------------------------------------------------------------------- /src/huc/include/pce/huc_gfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc_gfx.asm -------------------------------------------------------------------------------- /src/huc/include/pce/huc_math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc_math.asm -------------------------------------------------------------------------------- /src/huc/include/pce/huc_misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc_misc.asm -------------------------------------------------------------------------------- /src/huc/include/pce/huc_opt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/huc_opt.inc -------------------------------------------------------------------------------- /src/huc/include/pce/ipl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/ipl.bin -------------------------------------------------------------------------------- /src/huc/include/pce/joypad.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/joypad.asm -------------------------------------------------------------------------------- /src/huc/include/pce/library.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/library.asm -------------------------------------------------------------------------------- /src/huc/include/pce/library.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/library.inc -------------------------------------------------------------------------------- /src/huc/include/pce/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/macro.inc -------------------------------------------------------------------------------- /src/huc/include/pce/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/math.asm -------------------------------------------------------------------------------- /src/huc/include/pce/mouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/mouse.asm -------------------------------------------------------------------------------- /src/huc/include/pce/scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/scroll.asm -------------------------------------------------------------------------------- /src/huc/include/pce/sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/sound.asm -------------------------------------------------------------------------------- /src/huc/include/pce/sound.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/sound.inc -------------------------------------------------------------------------------- /src/huc/include/pce/sprites.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/sprites.inc -------------------------------------------------------------------------------- /src/huc/include/pce/standard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/standard.inc -------------------------------------------------------------------------------- /src/huc/include/pce/startup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/startup.asm -------------------------------------------------------------------------------- /src/huc/include/pce/startup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/startup.inc -------------------------------------------------------------------------------- /src/huc/include/pce/system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/system.inc -------------------------------------------------------------------------------- /src/huc/include/pce/vdc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/include/pce/vdc.inc -------------------------------------------------------------------------------- /src/huc/src/Make_src.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/Make_src.inc -------------------------------------------------------------------------------- /src/huc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/Makefile -------------------------------------------------------------------------------- /src/huc/src/Maketarg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/Maketarg.inc -------------------------------------------------------------------------------- /src/huc/src/huc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/Makefile -------------------------------------------------------------------------------- /src/huc/src/huc/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/code.c -------------------------------------------------------------------------------- /src/huc/src/huc/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/code.h -------------------------------------------------------------------------------- /src/huc/src/huc/const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/const.c -------------------------------------------------------------------------------- /src/huc/src/huc/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/const.h -------------------------------------------------------------------------------- /src/huc/src/huc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/data.c -------------------------------------------------------------------------------- /src/huc/src/huc/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/data.h -------------------------------------------------------------------------------- /src/huc/src/huc/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/defs.h -------------------------------------------------------------------------------- /src/huc/src/huc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/error.c -------------------------------------------------------------------------------- /src/huc/src/huc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/error.h -------------------------------------------------------------------------------- /src/huc/src/huc/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/expr.c -------------------------------------------------------------------------------- /src/huc/src/huc/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/expr.h -------------------------------------------------------------------------------- /src/huc/src/huc/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/function.c -------------------------------------------------------------------------------- /src/huc/src/huc/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/function.h -------------------------------------------------------------------------------- /src/huc/src/huc/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/gen.c -------------------------------------------------------------------------------- /src/huc/src/huc/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/gen.h -------------------------------------------------------------------------------- /src/huc/src/huc/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/io.c -------------------------------------------------------------------------------- /src/huc/src/huc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/io.h -------------------------------------------------------------------------------- /src/huc/src/huc/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/lex.c -------------------------------------------------------------------------------- /src/huc/src/huc/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/lex.h -------------------------------------------------------------------------------- /src/huc/src/huc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/main.c -------------------------------------------------------------------------------- /src/huc/src/huc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/main.h -------------------------------------------------------------------------------- /src/huc/src/huc/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/optimize.c -------------------------------------------------------------------------------- /src/huc/src/huc/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/optimize.h -------------------------------------------------------------------------------- /src/huc/src/huc/pragma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/pragma.c -------------------------------------------------------------------------------- /src/huc/src/huc/pragma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/pragma.h -------------------------------------------------------------------------------- /src/huc/src/huc/preproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/preproc.c -------------------------------------------------------------------------------- /src/huc/src/huc/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/preproc.h -------------------------------------------------------------------------------- /src/huc/src/huc/primary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/primary.c -------------------------------------------------------------------------------- /src/huc/src/huc/primary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/primary.h -------------------------------------------------------------------------------- /src/huc/src/huc/pseudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/pseudo.c -------------------------------------------------------------------------------- /src/huc/src/huc/pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/pseudo.h -------------------------------------------------------------------------------- /src/huc/src/huc/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/stmt.c -------------------------------------------------------------------------------- /src/huc/src/huc/stmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/stmt.h -------------------------------------------------------------------------------- /src/huc/src/huc/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/sym.c -------------------------------------------------------------------------------- /src/huc/src/huc/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/sym.h -------------------------------------------------------------------------------- /src/huc/src/huc/while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/while.c -------------------------------------------------------------------------------- /src/huc/src/huc/while.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/huc/while.h -------------------------------------------------------------------------------- /src/huc/src/isolink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/isolink/Makefile -------------------------------------------------------------------------------- /src/huc/src/isolink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/isolink/main.c -------------------------------------------------------------------------------- /src/huc/src/isolink/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/isolink/main.h -------------------------------------------------------------------------------- /src/huc/src/mkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/Makefile -------------------------------------------------------------------------------- /src/huc/src/mkit/as/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/Makefile -------------------------------------------------------------------------------- /src/huc/src/mkit/as/assemble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/assemble.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/code.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/command.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/crc.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/defs.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/expr.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/expr.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/externs.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/func.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/input.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/inst.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/macro.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/main.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/map.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/mml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/mml.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/nes.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/nes.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/output.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/pce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/pce.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/pce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/pce.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/pcx.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/proc.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/protos.h -------------------------------------------------------------------------------- /src/huc/src/mkit/as/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/symbol.c -------------------------------------------------------------------------------- /src/huc/src/mkit/as/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/as/vars.h -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/Makefile -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/develo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/develo.h -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/execmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/execmx.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/getrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/getrom.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/Makefile -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/command.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/crc16.h -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/develo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/develo.h -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/error.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/init.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/mx.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/slave.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/lib/xfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/lib/xfer.c -------------------------------------------------------------------------------- /src/huc/src/mkit/develo/perun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/develo/perun.c -------------------------------------------------------------------------------- /src/huc/src/mkit/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/index.txt -------------------------------------------------------------------------------- /src/huc/src/mkit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/mkit/readme.txt -------------------------------------------------------------------------------- /src/huc/src/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/tools/Makefile -------------------------------------------------------------------------------- /src/huc/src/tools/mod2mml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/tools/mod2mml/Makefile -------------------------------------------------------------------------------- /src/huc/src/tools/pcxtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/tools/pcxtool/Makefile -------------------------------------------------------------------------------- /src/huc/src/tools/pcxtool/pcxtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/src/tools/pcxtool/pcxtool.c -------------------------------------------------------------------------------- /src/huc/things.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/things.todo -------------------------------------------------------------------------------- /src/huc/whats.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/huc/whats.new -------------------------------------------------------------------------------- /src/husic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/LICENSE.txt -------------------------------------------------------------------------------- /src/husic/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/compile.bat -------------------------------------------------------------------------------- /src/husic/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/compile.sh -------------------------------------------------------------------------------- /src/husic/compile_dbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/compile_dbg.sh -------------------------------------------------------------------------------- /src/husic/ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/ftable.h -------------------------------------------------------------------------------- /src/husic/hus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/hus.c -------------------------------------------------------------------------------- /src/husic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/main.c -------------------------------------------------------------------------------- /src/husic/title.h: -------------------------------------------------------------------------------- 1 | #define PRG_TITLE "HuSIC 200904" 2 | -------------------------------------------------------------------------------- /src/husic/xpcmdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/husic/xpcmdrv.c -------------------------------------------------------------------------------- /src/wav2pd4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/wav2pd4/Makefile -------------------------------------------------------------------------------- /src/wav2pd4/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/wav2pd4/Makefile.w32 -------------------------------------------------------------------------------- /src/wav2pd4/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/wav2pd4/compile.bat -------------------------------------------------------------------------------- /src/wav2pd4/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/wav2pd4/compile.sh -------------------------------------------------------------------------------- /src/wav2pd4/xpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/wav2pd4/xpcm.c -------------------------------------------------------------------------------- /src/wav2pd4/xpcm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/src/wav2pd4/xpcm.txt -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/clean.sh -------------------------------------------------------------------------------- /tests/fmlfo.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/fmlfo.mml -------------------------------------------------------------------------------- /tests/multi01.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/multi01.mml -------------------------------------------------------------------------------- /tests/multi02.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/multi02.mml -------------------------------------------------------------------------------- /tests/multi03.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/multi03.mml -------------------------------------------------------------------------------- /tests/output/fmlfo.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/fmlfo.hes -------------------------------------------------------------------------------- /tests/output/multi01.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/multi01.hes -------------------------------------------------------------------------------- /tests/output/multi01.pce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/multi01.pce -------------------------------------------------------------------------------- /tests/output/test01.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/test01.hes -------------------------------------------------------------------------------- /tests/output/test02.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/test02.hes -------------------------------------------------------------------------------- /tests/output/test02_5b.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/test02_5b.hes -------------------------------------------------------------------------------- /tests/output/test03.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/test03.hes -------------------------------------------------------------------------------- /tests/output/test04.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/test04.hes -------------------------------------------------------------------------------- /tests/output/test05.hes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/output/test05.hes -------------------------------------------------------------------------------- /tests/pd4wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/pd4wav.py -------------------------------------------------------------------------------- /tests/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test.bat -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test.sh -------------------------------------------------------------------------------- /tests/test01.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test01.mml -------------------------------------------------------------------------------- /tests/test02.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test02.mml -------------------------------------------------------------------------------- /tests/test02_5b.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test02_5b.mml -------------------------------------------------------------------------------- /tests/test03.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test03.mml -------------------------------------------------------------------------------- /tests/test04.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test04.mml -------------------------------------------------------------------------------- /tests/test05.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/test05.mml -------------------------------------------------------------------------------- /tests/tone.pd4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/tone.pd4 -------------------------------------------------------------------------------- /tests/tone.pd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/tone.pd5 -------------------------------------------------------------------------------- /tests/tone.pd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/tone.pd8 -------------------------------------------------------------------------------- /tests/tone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/tone.wav -------------------------------------------------------------------------------- /tests/tone_orig.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BouKiCHi/HuSIC/HEAD/tests/tone_orig.wav --------------------------------------------------------------------------------