├── .env ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── babel.config.json ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── farbrausch-v2m ├── AUTHORS ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── libv2.h ├── phonemtab.h ├── ronan.cpp ├── scope.cpp ├── scope.h ├── sounddef.cpp ├── sounddef.h ├── synth.h ├── synth_core.cpp ├── tinyplayer.cpp ├── types.h ├── v2mconv.cpp ├── v2mconv.h ├── v2mplayer.cpp ├── v2mplayer.h └── v2mwrapper.cpp ├── fluidlite ├── CMakeLists.txt ├── LICENSE ├── README.md ├── android │ ├── Android.mk │ ├── include │ │ └── ogg │ │ │ └── config_types.h │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ └── project.properties ├── fluidlite.pc.in ├── include │ ├── fluidlite.h │ └── fluidsynth │ │ ├── gen.h │ │ ├── log.h │ │ ├── misc.h │ │ ├── mod.h │ │ ├── ramsfont.h │ │ ├── settings.h │ │ ├── sfont.h │ │ ├── synth.h │ │ ├── types.h │ │ ├── version.h │ │ └── voice.h ├── libogg-1.3.2 │ ├── include │ │ └── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ └── src │ │ ├── bitwise.c │ │ └── framing.c ├── libvorbis-1.3.5 │ ├── include │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ └── lib │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lookups.pl │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.h │ │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── tone.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h └── src │ ├── fluid_chan.c │ ├── fluid_chan.h │ ├── fluid_chorus.c │ ├── fluid_chorus.h │ ├── fluid_config.h │ ├── fluid_conv.c │ ├── fluid_conv.h │ ├── fluid_defsfont.c │ ├── fluid_defsfont.h │ ├── fluid_dsp_float.c │ ├── fluid_dsp_simple.c │ ├── fluid_gen.c │ ├── fluid_gen.h │ ├── fluid_hash.c │ ├── fluid_hash.h │ ├── fluid_init.c │ ├── fluid_list.c │ ├── fluid_list.h │ ├── fluid_midi.h │ ├── fluid_mod.c │ ├── fluid_mod.h │ ├── fluid_phase.h │ ├── fluid_ramsfont.c │ ├── fluid_ramsfont.h │ ├── fluid_rev.c │ ├── fluid_rev.h │ ├── fluid_settings.c │ ├── fluid_settings.h │ ├── fluid_sfont.h │ ├── fluid_synth.c │ ├── fluid_synth.h │ ├── fluid_sys.c │ ├── fluid_sys.h │ ├── fluid_tuning.c │ ├── fluid_tuning.h │ ├── fluid_voice.c │ ├── fluid_voice.h │ ├── fluidsynth.c │ └── fluidsynth_priv.h ├── game-music-emu ├── .gitignore ├── CMakeLists.txt ├── bitbucket-pipelines.yml ├── changes.txt ├── demo │ ├── CMakeLists.txt │ ├── Wave_Writer.cpp │ ├── Wave_Writer.h │ ├── basics.c │ ├── basics_mem.c │ ├── cpp_basics.cpp │ └── features.c ├── design.txt ├── gme.txt ├── gme │ ├── Ay_Apu.cpp │ ├── Ay_Apu.h │ ├── Ay_Core.cpp │ ├── Ay_Core.h │ ├── Ay_Cpu.cpp │ ├── Ay_Cpu.h │ ├── Ay_Emu.cpp │ ├── Ay_Emu.h │ ├── Blip_Buffer.cpp │ ├── Blip_Buffer.h │ ├── Blip_Buffer_impl.h │ ├── Blip_Buffer_impl2.h │ ├── Bml_Parser.cpp │ ├── Bml_Parser.h │ ├── C140_Emu.cpp │ ├── C140_Emu.h │ ├── CMakeLists.txt │ ├── Chip_Resampler.h │ ├── Classic_Emu.cpp │ ├── Classic_Emu.h │ ├── Data_Reader.cpp │ ├── Data_Reader.h │ ├── Downsampler.cpp │ ├── Downsampler.h │ ├── Dual_Resampler.cpp │ ├── Dual_Resampler.h │ ├── Effects_Buffer.cpp │ ├── Effects_Buffer.h │ ├── Fir_Resampler.cpp │ ├── Fir_Resampler.h │ ├── Gb_Apu.cpp │ ├── Gb_Apu.h │ ├── Gb_Cpu.cpp │ ├── Gb_Cpu.h │ ├── Gb_Cpu_run.h │ ├── Gb_Oscs.cpp │ ├── Gb_Oscs.h │ ├── Gbs_Core.cpp │ ├── Gbs_Core.h │ ├── Gbs_Cpu.cpp │ ├── Gbs_Emu.cpp │ ├── Gbs_Emu.h │ ├── Gme_File.cpp │ ├── Gme_File.h │ ├── Gme_Loader.cpp │ ├── Gme_Loader.h │ ├── Gym_Emu.cpp │ ├── Gym_Emu.h │ ├── Hes_Apu.cpp │ ├── Hes_Apu.h │ ├── Hes_Apu_Adpcm.cpp │ ├── Hes_Apu_Adpcm.h │ ├── Hes_Core.cpp │ ├── Hes_Core.h │ ├── Hes_Cpu.cpp │ ├── Hes_Cpu.h │ ├── Hes_Cpu_run.h │ ├── Hes_Emu.cpp │ ├── Hes_Emu.h │ ├── K051649_Emu.cpp │ ├── K051649_Emu.h │ ├── K053260_Emu.cpp │ ├── K053260_Emu.h │ ├── K054539_Emu.cpp │ ├── K054539_Emu.h │ ├── Kss_Core.cpp │ ├── Kss_Core.h │ ├── Kss_Cpu.cpp │ ├── Kss_Cpu.h │ ├── Kss_Emu.cpp │ ├── Kss_Emu.h │ ├── Kss_Scc_Apu.cpp │ ├── Kss_Scc_Apu.h │ ├── M3u_Playlist.cpp │ ├── M3u_Playlist.h │ ├── Multi_Buffer.cpp │ ├── Multi_Buffer.h │ ├── Music_Emu.cpp │ ├── Music_Emu.h │ ├── Nes_Apu.cpp │ ├── Nes_Apu.h │ ├── Nes_Cpu.cpp │ ├── Nes_Cpu.h │ ├── Nes_Cpu_run.h │ ├── Nes_Fds_Apu.cpp │ ├── Nes_Fds_Apu.h │ ├── Nes_Fme7_Apu.cpp │ ├── Nes_Fme7_Apu.h │ ├── Nes_Mmc5_Apu.h │ ├── Nes_Namco_Apu.cpp │ ├── Nes_Namco_Apu.h │ ├── Nes_Oscs.cpp │ ├── Nes_Oscs.h │ ├── Nes_Vrc6_Apu.cpp │ ├── Nes_Vrc6_Apu.h │ ├── Nes_Vrc7_Apu.cpp │ ├── Nes_Vrc7_Apu.h │ ├── Nsf_Core.cpp │ ├── Nsf_Core.h │ ├── Nsf_Cpu.cpp │ ├── Nsf_Emu.cpp │ ├── Nsf_Emu.h │ ├── Nsf_Impl.cpp │ ├── Nsf_Impl.h │ ├── Nsfe_Emu.cpp │ ├── Nsfe_Emu.h │ ├── Okim6258_Emu.cpp │ ├── Okim6258_Emu.h │ ├── Okim6295_Emu.cpp │ ├── Okim6295_Emu.h │ ├── Opl_Apu.cpp │ ├── Opl_Apu.h │ ├── Pwm_Emu.cpp │ ├── Pwm_Emu.h │ ├── Qsound_Apu.cpp │ ├── Qsound_Apu.h │ ├── Resampler.cpp │ ├── Resampler.h │ ├── Rf5C164_Emu.cpp │ ├── Rf5C164_Emu.h │ ├── Rf5C68_Emu.cpp │ ├── Rf5C68_Emu.h │ ├── Rom_Data.cpp │ ├── Rom_Data.h │ ├── Sap_Apu.cpp │ ├── Sap_Apu.h │ ├── Sap_Core.cpp │ ├── Sap_Core.h │ ├── Sap_Cpu.cpp │ ├── Sap_Cpu.h │ ├── Sap_Emu.cpp │ ├── Sap_Emu.h │ ├── SegaPcm_Emu.cpp │ ├── SegaPcm_Emu.h │ ├── Sgc_Core.cpp │ ├── Sgc_Core.h │ ├── Sgc_Cpu.cpp │ ├── Sgc_Emu.cpp │ ├── Sgc_Emu.h │ ├── Sgc_Impl.cpp │ ├── Sgc_Impl.h │ ├── Sms_Apu.cpp │ ├── Sms_Apu.h │ ├── Sms_Fm_Apu.cpp │ ├── Sms_Fm_Apu.h │ ├── Sms_Oscs.h │ ├── Snes_Spc.cpp │ ├── Snes_Spc.h │ ├── Spc_Cpu.cpp │ ├── Spc_Cpu.h │ ├── Spc_Dsp.cpp │ ├── Spc_Dsp.h │ ├── Spc_Emu.cpp │ ├── Spc_Emu.h │ ├── Spc_Filter.cpp │ ├── Spc_Filter.h │ ├── Spc_Sfm.cpp │ ├── Spc_Sfm.h │ ├── Track_Filter.cpp │ ├── Track_Filter.h │ ├── Upsampler.cpp │ ├── Upsampler.h │ ├── Vgm_Core.cpp │ ├── Vgm_Core.h │ ├── Vgm_Emu.cpp │ ├── Vgm_Emu.h │ ├── Ym2151_Emu.cpp │ ├── Ym2151_Emu.h │ ├── Ym2203_Emu.cpp │ ├── Ym2203_Emu.h │ ├── Ym2413_Emu.cpp │ ├── Ym2413_Emu.h │ ├── Ym2608_Emu.cpp │ ├── Ym2608_Emu.h │ ├── Ym2610b_Emu.cpp │ ├── Ym2610b_Emu.h │ ├── Ym2612_Emu.cpp │ ├── Ym2612_Emu.h │ ├── Ym2612_Emu_Gens.cpp │ ├── Ym2612_Emu_MAME.cpp │ ├── Ym2612_GENS.cpp │ ├── Ym2612_GENS.h │ ├── Ym2612_MAME.cpp │ ├── Ym2612_MAME.h │ ├── Ym2612_Nuked.cpp │ ├── Ym2612_Nuked.h │ ├── Ym3812_Emu.cpp │ ├── Ym3812_Emu.h │ ├── Ymf262_Emu.cpp │ ├── Ymf262_Emu.h │ ├── Ymz280b_Emu.cpp │ ├── Ymz280b_Emu.h │ ├── Z80_Cpu.cpp │ ├── Z80_Cpu.h │ ├── Z80_Cpu_run.h │ ├── adlib.h │ ├── blargg_common.cpp │ ├── blargg_common.h │ ├── blargg_config.h │ ├── blargg_endian.h │ ├── blargg_errors.cpp │ ├── blargg_errors.h │ ├── blargg_source.h │ ├── c140.c │ ├── c140.h │ ├── dac_control.c │ ├── dac_control.h │ ├── dbopl.cpp │ ├── dbopl.h │ ├── divfix.h │ ├── emuconfig.h │ ├── fm.c │ ├── fm.h │ ├── fm2612.c │ ├── fmopl.cpp │ ├── fmopl.h │ ├── gb_cpu_io.h │ ├── gme.cpp │ ├── gme.h │ ├── gme.txt │ ├── gme_custom_dprintf.c │ ├── gme_custom_dprintf.h │ ├── gme_types.h │ ├── gme_types.h.in │ ├── hes_cpu_io.h │ ├── higan │ │ ├── dsp │ │ │ ├── SPC_DSP.cpp │ │ │ ├── SPC_DSP.h │ │ │ ├── dsp.cpp │ │ │ └── dsp.hpp │ │ ├── processor │ │ │ └── spc700 │ │ │ │ ├── algorithms.cpp │ │ │ │ ├── disassembler.cpp │ │ │ │ ├── instructions.cpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── registers.hpp │ │ │ │ ├── spc700.cpp │ │ │ │ └── spc700.hpp │ │ └── smp │ │ │ ├── memory.cpp │ │ │ ├── smp.cpp │ │ │ ├── smp.hpp │ │ │ └── timing.cpp │ ├── i_fmpac.h │ ├── i_fmunit.h │ ├── i_vrc7.h │ ├── k051649.c │ ├── k051649.h │ ├── k053260.c │ ├── k053260.h │ ├── k054539.c │ ├── k054539.h │ ├── kmsnddev.h │ ├── libgme.pc.in │ ├── license.txt │ ├── mamedef.h │ ├── mathdefs.h │ ├── nes_cpu_io.h │ ├── nestypes.h │ ├── okim6258.c │ ├── okim6258.h │ ├── okim6295.c │ ├── okim6295.h │ ├── pwm.c │ ├── pwm.h │ ├── qmix.c │ ├── qmix.h │ ├── rf5c68.c │ ├── rf5c68.h │ ├── s_deltat.c │ ├── s_deltat.h │ ├── s_logtbl.c │ ├── s_logtbl.h │ ├── s_opl.c │ ├── s_opl.h │ ├── s_opltbl.c │ ├── s_opltbl.h │ ├── sap_cpu_io.h │ ├── scd_pcm.c │ ├── scd_pcm.h │ ├── segapcm.c │ ├── segapcm.h │ ├── ym2151.c │ ├── ym2151.h │ ├── ym2413.c │ ├── ym2413.h │ ├── ymdeltat.cpp │ ├── ymdeltat.h │ ├── ymz280b.c │ └── ymz280b.h ├── license.gpl2.txt ├── license.txt ├── player │ ├── Audio_Scope.cpp │ ├── Audio_Scope.h │ ├── CMakeLists.txt │ ├── Music_Player.cpp │ ├── Music_Player.h │ └── player.cpp ├── readme.txt ├── test.m3u ├── test.nsf ├── test.vgz └── test │ ├── Makefile │ ├── Wave_Writer.cpp │ ├── Wave_Writer.h │ ├── basics.c │ ├── basics_mem.c │ └── test.sh ├── lazyusf2 ├── .gitignore ├── CMakeLists.txt ├── Emscripten.Makefile ├── Makefile ├── README.md ├── _wothke │ ├── circular_buffer.h │ ├── embuild.bat │ └── n64plug.cpp ├── ai │ ├── ai_controller.c │ └── ai_controller.h ├── api │ ├── api_export.ver │ ├── callbacks.c │ ├── callbacks.h │ ├── m64p_common.h │ ├── m64p_config.h │ ├── m64p_debugger.h │ ├── m64p_frontend.h │ ├── m64p_plugin.h │ ├── m64p_types.h │ └── m64p_vidext.h ├── debugger │ ├── dbg_decoder.c │ ├── dbg_decoder.h │ ├── dbg_decoder_local.h │ ├── dbg_print.c │ └── dbg_types.h ├── main │ ├── list.h │ ├── main.c │ ├── main.h │ ├── rom.c │ ├── rom.h │ ├── savestates.c │ ├── savestates.h │ ├── util.c │ ├── util.h │ └── version.h ├── memory │ ├── memory.c │ └── memory.h ├── osal │ └── preproc.h ├── pi │ ├── cart_rom.c │ ├── cart_rom.h │ ├── pi_controller.c │ └── pi_controller.h ├── prj │ └── msvc │ │ ├── .gitignore │ │ ├── lazyusf2.vcxproj │ │ └── lazyusf2.vcxproj.filters ├── r4300 │ ├── cached_interp.c │ ├── cached_interp.h │ ├── cp0.c │ ├── cp0.h │ ├── cp1.c │ ├── cp1.h │ ├── empty_dynarec.c │ ├── exception.c │ ├── exception.h │ ├── fpu.h │ ├── instr_counters.c │ ├── instr_counters.h │ ├── interpreter.def │ ├── interpreter_cop0.def │ ├── interpreter_cop1.def │ ├── interpreter_r4300.def │ ├── interpreter_regimm.def │ ├── interpreter_special.def │ ├── interpreter_tlb.def │ ├── interupt.c │ ├── interupt.h │ ├── macros.h │ ├── mi_controller.c │ ├── mi_controller.h │ ├── new_dynarec │ │ ├── assem_arm.c │ │ ├── assem_arm.h │ │ ├── assem_x86.c │ │ ├── assem_x86.h │ │ ├── linkage_arm.S │ │ ├── linkage_x86.S │ │ ├── linkage_x86.asm │ │ ├── new_dynarec.c │ │ └── new_dynarec.h │ ├── ops.h │ ├── pure_interp.c │ ├── pure_interp.h │ ├── r4300.c │ ├── r4300.h │ ├── r4300_core.c │ ├── r4300_core.h │ ├── recomp.c │ ├── recomp.h │ ├── recomph.h │ ├── reset.c │ ├── reset.h │ ├── tlb.c │ ├── tlb.h │ ├── x86 │ │ ├── assemble.c │ │ ├── assemble.h │ │ ├── assemble_struct.h │ │ ├── gbc.c │ │ ├── gcop0.c │ │ ├── gcop1.c │ │ ├── gcop1_d.c │ │ ├── gcop1_l.c │ │ ├── gcop1_s.c │ │ ├── gcop1_w.c │ │ ├── gr4300.c │ │ ├── gregimm.c │ │ ├── gspecial.c │ │ ├── gtlb.c │ │ ├── interpret.h │ │ ├── regcache.c │ │ ├── regcache.h │ │ └── rjump.c │ └── x86_64 │ │ ├── assemble.c │ │ ├── assemble.h │ │ ├── assemble_struct.h │ │ ├── gbc.c │ │ ├── gcop0.c │ │ ├── gcop1.c │ │ ├── gcop1_d.c │ │ ├── gcop1_l.c │ │ ├── gcop1_s.c │ │ ├── gcop1_w.c │ │ ├── gr4300.c │ │ ├── gregimm.c │ │ ├── gspecial.c │ │ ├── gtlb.c │ │ ├── interpret.h │ │ ├── regcache.c │ │ ├── regcache.h │ │ └── rjump.c ├── rdp │ ├── rdp_core.c │ └── rdp_core.h ├── ri │ ├── rdram.c │ ├── rdram.h │ ├── rdram_detection_hack.c │ ├── rdram_detection_hack.h │ ├── ri_controller.c │ └── ri_controller.h ├── rsp │ ├── rsp_core.c │ └── rsp_core.h ├── rsp_hle │ ├── LICENSES │ ├── alist.c │ ├── alist.h │ ├── alist_audio.c │ ├── alist_naudio.c │ ├── alist_nead.c │ ├── arithmetics.h │ ├── audio.c │ ├── audio.h │ ├── cicx105.c │ ├── common.h │ ├── hle.c │ ├── hle.h │ ├── hle_external.h │ ├── hle_internal.h │ ├── jpeg.c │ ├── memory.c │ ├── memory.h │ ├── mp3.c │ ├── msvc-compat │ │ └── our-stdbool.h │ ├── musyx.c │ ├── plugin.c │ └── ucodes.h ├── rsp_lle │ ├── bench.c │ ├── config.h │ ├── disassemble_rsp.c │ ├── execute.h │ ├── matrix.h │ ├── rsp.c │ ├── rsp.h │ ├── rsp_lle.h │ ├── su.h │ └── vu │ │ ├── cf.h │ │ ├── clamp.h │ │ ├── divrom.h │ │ ├── shuffle.h │ │ ├── vabs.h │ │ ├── vadd.h │ │ ├── vaddc.h │ │ ├── vand.h │ │ ├── vch.h │ │ ├── vcl.h │ │ ├── vcr.h │ │ ├── veq.h │ │ ├── vge.h │ │ ├── vlt.h │ │ ├── vmacf.h │ │ ├── vmacq.h │ │ ├── vmacu.h │ │ ├── vmadh.h │ │ ├── vmadl.h │ │ ├── vmadm.h │ │ ├── vmadn.h │ │ ├── vmov.h │ │ ├── vmrg.h │ │ ├── vmudh.h │ │ ├── vmudl.h │ │ ├── vmudm.h │ │ ├── vmudn.h │ │ ├── vmulf.h │ │ ├── vmulu.h │ │ ├── vnand.h │ │ ├── vne.h │ │ ├── vnop.h │ │ ├── vnor.h │ │ ├── vnxor.h │ │ ├── vor.h │ │ ├── vrcp.h │ │ ├── vrcph.h │ │ ├── vrcpl.h │ │ ├── vrsq.h │ │ ├── vrsqh.h │ │ ├── vrsql.h │ │ ├── vsaw.h │ │ ├── vsub.h │ │ ├── vsubc.h │ │ ├── vu.h │ │ └── vxor.h ├── si │ ├── cic.c │ ├── cic.h │ ├── game_controller.c │ ├── game_controller.h │ ├── n64_cic_nus_6105.c │ ├── n64_cic_nus_6105.h │ ├── pif.c │ ├── pif.h │ ├── si_controller.c │ └── si_controller.h ├── test │ ├── bench.c │ └── dumpresampled.c ├── usf │ ├── barray.c │ ├── barray.h │ ├── resampler.c │ ├── resampler.h │ ├── usf.c │ ├── usf.h │ └── usf_internal.h └── vi │ ├── vi_controller.c │ └── vi_controller.h ├── libADLMIDI ├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── LICENSE.GPL-3.txt ├── LICENSE.LGPL-2.1.txt ├── README.md ├── android │ ├── .gitignore │ ├── Android.mk │ ├── CMakeLists.txt │ └── jni │ │ ├── Android.mk │ │ └── Application.mk ├── banks.ini ├── bitbucket-pipelines.yml ├── cmake │ ├── FindLIBVLC.cmake │ ├── djgpp │ │ ├── djgpp-cmake-core.sh │ │ ├── djgpp-cmake.sh │ │ └── toolchain-djgpp.cmake │ ├── mingw-dlls.cmake │ ├── openwattcom-dos │ │ ├── custom-h │ │ │ ├── mymap.h │ │ │ └── myset.h │ │ ├── ow-cmake.sh │ │ └── toolchain-ow.cmake │ ├── openwattcom │ │ ├── Linux-OpenWatcom-C.cmake │ │ ├── Linux-OpenWatcom-CXX.cmake │ │ ├── Linux-OpenWatcom.cmake │ │ ├── ow-cmake.sh │ │ └── toolchain-ow.cmake │ └── win-ci │ │ ├── lib-sdk.cmd │ │ ├── vlc-plugin.cmd │ │ └── winmm-drivers.cmd ├── examples │ ├── python-alsa │ │ ├── ReadMe.txt │ │ └── playmidi.py │ ├── python-pyaudio │ │ └── playmidi.py │ └── sdl2_audio │ │ ├── CMakeLists.txt │ │ └── sdl2_sample.c ├── fm_banks │ ├── adldata-cache.dat │ ├── ail │ │ ├── AdvancedCivilization.opl │ │ ├── BubbleBobble.opl │ │ ├── DeathGate.opl │ │ ├── Discworld.opl │ │ ├── FIFAInternationalSoccer.opl │ │ ├── Guilty.opl │ │ ├── LittleBigAdventure.opl │ │ ├── NationalHockeyLeaguePA.opl │ │ ├── StarshipInvasion.opl │ │ ├── SuperStreetFighter2.opl │ │ ├── Syndicate.opl │ │ ├── SyndicateWars.opl │ │ ├── SystemShock.opl │ │ ├── TerraNovaStrikeForceCenturi.opl │ │ ├── ThemeHospital.opl │ │ ├── UltimateSoccerManager.opl │ │ ├── master_of_magic.wopl │ │ ├── master_of_magic_orchestral.opl │ │ ├── master_of_magic_standard.opl │ │ ├── miss-inst │ │ │ ├── BardsTaleConstruction.opl │ │ │ ├── Caesar2.opl │ │ │ ├── HighSeasTrader.opl │ │ │ ├── LordsOfTheRealm.opl │ │ │ └── WhenTwoWorldsWar.opl │ │ ├── nemesis.opl │ │ ├── non-gm │ │ │ ├── AirBucks.ad │ │ │ ├── BattleChess4000-2.opl │ │ │ ├── BattleChess4000-dupe.opl │ │ │ ├── BattleChess4000.opl │ │ │ ├── InteritTheEarth.opl │ │ │ ├── InteritTheEarth2.opl │ │ │ ├── JaggedAlliance.opl │ │ │ ├── KasparovGambit.opl │ │ │ ├── MagicCarpet2.opl │ │ │ ├── ReturnToZork.opl │ │ │ ├── UltimaUnderworld2.opl │ │ │ ├── WreckinCrew.opl │ │ │ ├── lost-vikings.opl │ │ │ └── warcraft1.opl │ │ ├── simfarm.ad │ │ ├── simfarm.opl │ │ ├── star_control_3.opl │ │ └── warcraft2.ad │ ├── bnk_files │ │ ├── grassman1.bnk │ │ ├── grassman2.bnk │ │ ├── master_of_magic.bnk │ │ └── themepark.tmb │ ├── dmx │ │ ├── DMXOPL-by-sneakernets-old.op2 │ │ ├── doom1.op2 │ │ ├── doom2.op2 │ │ ├── heretic.op2 │ │ ├── raptor.op2 │ │ └── strife.op2 │ ├── hmi │ │ ├── 3d_Table_Sports │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ ├── Aces_of_the_Deep │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ ├── Anvil_of_Dawn │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ ├── Descent │ │ │ ├── drum.bnk │ │ │ ├── hamdrum.bnk │ │ │ ├── hammelo.bnk │ │ │ ├── intdrum.bnk │ │ │ ├── intmelo.bnk │ │ │ ├── melodic.bnk │ │ │ ├── rickdrum.bnk │ │ │ └── rickmelo.bnk │ │ ├── Descent_2 │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ ├── Earthsiege │ │ │ ├── drum-old.bnk │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ ├── Normality │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ ├── Shattered_Steel │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ │ └── Theme_Park │ │ │ ├── drum.bnk │ │ │ └── melodic.bnk │ ├── ibk_files │ │ ├── Inst │ │ │ ├── $GMOPL.IBK │ │ │ ├── 0.SBI │ │ │ ├── 1gmopl.ibk │ │ │ ├── CHRMPERC.IBK │ │ │ ├── DOOM-1.IBK │ │ │ ├── DOOM-2.IBK │ │ │ ├── DOOM.IBK │ │ │ ├── DOOM2.IBK │ │ │ ├── DRUM.IBK │ │ │ ├── DRUM2.IBK │ │ │ ├── DRUM3.IBK │ │ │ ├── DRUM4.IBK │ │ │ ├── DRUMOPL.IBK │ │ │ ├── DRUMS.IBK │ │ │ ├── GENMIDI.IBK │ │ │ ├── GM.IBK │ │ │ ├── GMOPL1.IBK │ │ │ ├── MAUIFM.IBK │ │ │ ├── MAUIPERC.IBK │ │ │ ├── MT32.IBK │ │ │ ├── NVD.IBK │ │ │ ├── PERCUSSV.IBK │ │ │ ├── TIMBRE.IBK │ │ │ └── gmopl.ibk │ │ ├── JOconnel-DRUM.IBK │ │ ├── JOconnel.IBK │ │ ├── fmsymth_internal_drum.ibk │ │ ├── fmsymth_internal_melodic.ibk │ │ ├── game.ibk │ │ ├── gmopl_wohl_mod-drums.ibk │ │ ├── gmopl_wohl_mod.ibk │ │ ├── ibk │ │ │ ├── BASS.IBK │ │ │ ├── BRASS.IBK │ │ │ ├── CHRMPERC.IBK │ │ │ ├── DRUM.IBK │ │ │ ├── ENSEMBLE.IBK │ │ │ ├── FMTIMBRE.IBK │ │ │ ├── GENMIDI.IBK │ │ │ ├── GM.IBK │ │ │ ├── GMOPL.IBK │ │ │ ├── GMOPL2.IBK │ │ │ ├── GUITAR.IBK │ │ │ ├── HARP.IBK │ │ │ ├── IBK.H │ │ │ ├── MAUIFM.IBK │ │ │ ├── MAUIPERC.IBK │ │ │ ├── MELODY.IBK │ │ │ ├── MT32.IBK │ │ │ ├── ORGAN.IBK │ │ │ ├── PERCUSSV.IBK │ │ │ ├── PIANO.IBK │ │ │ ├── PIPE.IBK │ │ │ ├── README.TXT │ │ │ ├── REED.IBK │ │ │ ├── SYNLEAD.IBK │ │ │ ├── SYNLEAD2.IBK │ │ │ ├── SYNLEAD3.IBK │ │ │ ├── SYNPAD.IBK │ │ │ ├── TIMBRE.IBK │ │ │ └── VIOLIN.IBK │ │ ├── mt_fm.ibk │ │ ├── nitemare_3d.ibk │ │ ├── soccer-genmidi.ibk │ │ └── soccer-percs.ibk │ ├── junglevision │ │ ├── 2x2.op3 │ │ ├── 2x2.opl │ │ ├── fat2.op3 │ │ ├── fat2_modded.op3 │ │ ├── fat4-fixed.opl │ │ ├── fat4-fixed.wopl │ │ ├── fat4.op3 │ │ ├── fat4_old.op3 │ │ ├── fat4_probe.op3 │ │ ├── gmoconel.tmb │ │ ├── gmopl_wohl_mod.tmb │ │ ├── jv_2op.op3 │ │ ├── wallace.op3 │ │ └── wallace.tmb │ ├── misc_files │ │ ├── bisqwit.adlraw │ │ └── cartooners-adlib-decrypted.dat │ ├── tmb_files │ │ ├── bloodtmb.tmb │ │ ├── buildtmb.c │ │ ├── d3dtimbr.tmb │ │ ├── default.tmb │ │ ├── nam.tmb │ │ ├── rott.tmb │ │ └── swtimbr.tmb │ ├── wopl_files │ │ ├── Apogee-IMF-90.wopl │ │ ├── DMXOPL3-by-sneakernets-GS.wopl │ │ ├── GM-By-J.A.Nguyen-and-Wohlstand.wopl │ │ ├── Wohlstand's-modded-FatMan.wopl │ │ ├── lostvik.wopl │ │ └── msadlib.wopl │ ├── ymf262.odt │ └── ymf262.pdf ├── include │ └── adlmidi.h ├── libADLMIDI.pc.in ├── projects │ └── watcom │ │ ├── .gitignore │ │ ├── ADLMIDI-linux32.tgt │ │ ├── ADLMIDI-win32.tgt │ │ ├── ADLMIDI.tgt │ │ ├── bass.mid │ │ ├── dmxopl3.wop │ │ ├── libADLMIDI-linux32.wpj │ │ ├── libADLMIDI-win32.wpj │ │ ├── libADLMIDI.tgt │ │ ├── libADLMIDI.wpj │ │ ├── nin-hlah.mid │ │ ├── onestop.mid │ │ ├── playmidi-debug-crashful.zip │ │ ├── playmidi-linux32.tgt │ │ ├── playmidi-win32.tgt │ │ ├── playmidi.tgt │ │ ├── pmidid32.tgt │ │ └── ttd10.mid ├── src │ ├── adlmidi.cpp │ ├── adlmidi_bankmap.h │ ├── adlmidi_bankmap.tcc │ ├── adlmidi_cvt.hpp │ ├── adlmidi_db.h │ ├── adlmidi_load.cpp │ ├── adlmidi_midiplay.cpp │ ├── adlmidi_midiplay.hpp │ ├── adlmidi_opl3.cpp │ ├── adlmidi_opl3.hpp │ ├── adlmidi_private.cpp │ ├── adlmidi_private.hpp │ ├── adlmidi_ptr.hpp │ ├── adlmidi_sequencer.cpp │ ├── chips │ │ ├── common │ │ │ ├── mutex.hpp │ │ │ └── ptr.hpp │ │ ├── dosbox │ │ │ ├── dbopl.cpp │ │ │ └── dbopl.h │ │ ├── dosbox_opl3.cpp │ │ ├── dosbox_opl3.h │ │ ├── java │ │ │ └── JavaOPL3.hpp │ │ ├── java_opl3.cpp │ │ ├── java_opl3.h │ │ ├── nuked │ │ │ ├── nukedopl3.c │ │ │ ├── nukedopl3.h │ │ │ ├── nukedopl3_174.c │ │ │ └── nukedopl3_174.h │ │ ├── nuked_opl3.cpp │ │ ├── nuked_opl3.h │ │ ├── nuked_opl3_v174.cpp │ │ ├── nuked_opl3_v174.h │ │ ├── opal │ │ │ ├── LICENSE.txt │ │ │ ├── README.old │ │ │ ├── opal-pan.diff │ │ │ └── opal.hpp │ │ ├── opal_opl3.cpp │ │ ├── opal_opl3.h │ │ ├── opl_chip_base.h │ │ └── opl_chip_base.tcc │ ├── cvt_mus2mid.hpp │ ├── cvt_xmi2mid.hpp │ ├── file_reader.hpp │ ├── fraction.hpp │ ├── inst_db.cpp │ ├── midi_sequencer.h │ ├── midi_sequencer.hpp │ ├── midi_sequencer_impl.hpp │ ├── oplinst.h │ ├── structures │ │ ├── pl_list.hpp │ │ └── pl_list.tcc │ └── wopl │ │ ├── wopl_file.c │ │ └── wopl_file.h ├── test.wopl ├── test │ ├── CMakeLists.txt │ ├── bankmap │ │ ├── CMakeLists.txt │ │ └── bank_map.cpp │ ├── common │ │ ├── catch.hpp │ │ └── catch_main.cpp │ ├── conversion │ │ ├── CMakeLists.txt │ │ └── conversion.cpp │ └── wopl-file │ │ ├── CMakeLists.txt │ │ └── wopl_file.cpp └── utils │ ├── adlmidi-2 │ ├── 6x9.hpp │ ├── 8x16.hpp │ ├── 9x15.hpp │ ├── CMakeLists.txt │ ├── cmake │ │ ├── check-termio.c │ │ └── check-termios.c │ ├── input.cc │ ├── input.hpp │ ├── midiplay.cc │ ├── puzzlegame.cc │ └── puzzlegame.hpp │ ├── dumpbank │ ├── CMakeLists.txt │ └── dumpbank.cpp │ ├── dumpmiles │ ├── CMakeLists.txt │ └── dumpmiles.cpp │ ├── gen_adldata │ ├── CMakeLists.txt │ ├── file_formats │ │ ├── common.h │ │ ├── load_ail.h │ │ ├── load_bisqwit.h │ │ ├── load_bnk.h │ │ ├── load_bnk2.h │ │ ├── load_ea.h │ │ ├── load_ibk.h │ │ ├── load_jv.h │ │ ├── load_op2.h │ │ ├── load_tmb.h │ │ └── load_wopl.h │ ├── gen_adldata.cc │ ├── ini │ │ ├── IniProcessor.pri │ │ ├── ini_processing.cpp │ │ ├── ini_processing.h │ │ └── ini_processing_variant.h │ ├── measurer.cpp │ ├── measurer.h │ ├── midi_inst_list.h │ ├── progs_cache.cpp │ ├── progs_cache.h │ └── scrapped.txt │ ├── midiplay │ ├── CMakeLists.txt │ ├── adlmidiplay.cpp │ ├── audio.h │ ├── audio_sdl.c │ ├── audio_winmm.c │ ├── wave_writer.c │ └── wave_writer.h │ ├── mus2mid │ ├── CMakeLists.txt │ └── mus2mid.cpp │ ├── test │ ├── adldatatest.cc │ └── test.cc │ ├── update-copyright.sh │ ├── vlc_codec │ ├── .gitignore │ ├── CMakeLists.txt │ └── libadlmidi.c │ ├── winmm_drv │ ├── CMakeLists.txt │ ├── config │ │ ├── regconfig.c │ │ └── regconfig.h │ ├── cpl │ │ ├── adlconfig-tool.c │ │ ├── adlconfig.c │ │ ├── adlconfig.def │ │ ├── adlconfig.manifest │ │ ├── adlconfig.rc │ │ ├── config_dialog.c │ │ ├── config_dialog.h │ │ ├── opl3icon.ico │ │ ├── res-cpl.rc │ │ ├── res-tool.rc │ │ ├── resource.h │ │ └── targetver.h │ ├── installer │ │ ├── drvinst.c │ │ ├── drvinst.exe.manifest │ │ ├── drvinst.rc │ │ ├── install.bat │ │ └── uninstall.bat │ ├── src │ │ ├── MidiSynth.cpp │ │ ├── MidiSynth.h │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── winmm_drv.cpp │ │ └── winmm_drv.def │ └── test │ │ └── test.c │ └── xmi2mid │ ├── CMakeLists.txt │ └── xmi2mid.cpp ├── libvgm ├── .gitattributes ├── .github │ └── workflows │ │ ├── GHA.yml │ │ └── action-build-libvgm │ │ ├── action.yml │ │ ├── build.sh │ │ ├── configure.sh │ │ └── install.sh ├── .gitignore ├── CMakeLists.txt ├── Compiling.txt ├── Dockerfile ├── Makefile ├── audemutest.c ├── audio │ ├── AudDrv_ALSA.c │ ├── AudDrv_CoreAudio.c │ ├── AudDrv_DSound.cpp │ ├── AudDrv_OSS.c │ ├── AudDrv_Pulse.c │ ├── AudDrv_SADA.c │ ├── AudDrv_WASAPI.cpp │ ├── AudDrv_WaveWriter.c │ ├── AudDrv_WinMM.c │ ├── AudDrv_XAudio2.cpp │ ├── AudDrv_libao.c │ ├── AudioStream.c │ ├── AudioStream.h │ ├── AudioStream_LstFuncs.h │ ├── AudioStream_SpcDrvFuns.h │ ├── AudioStructs.h │ └── CMakeLists.txt ├── audiotest.c ├── cmake │ ├── config.cmake.in │ ├── joinpaths │ │ ├── Info.txt │ │ └── JoinPaths.cmake │ ├── libvgm.pc.in │ ├── sanitizers │ │ ├── FindASan.cmake │ │ ├── FindMSan.cmake │ │ ├── FindSanitizers.cmake │ │ ├── FindTSan.cmake │ │ ├── FindUBSan.cmake │ │ ├── Info.txt │ │ ├── asan-wrapper │ │ └── sanitize-helpers.cmake │ └── utils.cmake ├── common_def.h ├── emu │ ├── CMakeLists.txt │ ├── EmuCores.h │ ├── EmuHelper.h │ ├── EmuStructs.h │ ├── RatioCntr.h │ ├── Resampler.c │ ├── Resampler.h │ ├── SoundDevs.h │ ├── SoundEmu.c │ ├── SoundEmu.h │ ├── cores │ │ ├── 2151intf.c │ │ ├── 2151intf.h │ │ ├── 2413intf.c │ │ ├── 2413intf.h │ │ ├── 2612intf.c │ │ ├── 2612intf.h │ │ ├── 262intf.c │ │ ├── 262intf.h │ │ ├── Ootake_PSG.c │ │ ├── Ootake_PSG.h │ │ ├── Ootake_PSG_private.h │ │ ├── adlibemu.h │ │ ├── adlibemu_opl2.c │ │ ├── adlibemu_opl3.c │ │ ├── adlibemu_opl_inc.c │ │ ├── adlibemu_opl_inc.h │ │ ├── ay8910.c │ │ ├── ay8910.h │ │ ├── ayintf.c │ │ ├── ayintf.h │ │ ├── c140.c │ │ ├── c140.h │ │ ├── c219.c │ │ ├── c219.h │ │ ├── c352.c │ │ ├── c352.h │ │ ├── c6280_mame.c │ │ ├── c6280_mame.h │ │ ├── c6280intf.c │ │ ├── c6280intf.h │ │ ├── emu2149.c │ │ ├── emu2149.h │ │ ├── emu2149_private.h │ │ ├── emu2413.c │ │ ├── emu2413.h │ │ ├── emu2413_private.h │ │ ├── emutypes.h │ │ ├── es5503.c │ │ ├── es5503.h │ │ ├── es5506.c │ │ ├── es5506.h │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── fmopn.c │ │ ├── fmopn.h │ │ ├── fmopn_2608rom.h │ │ ├── gb.c │ │ ├── gb.h │ │ ├── iremga20.c │ │ ├── iremga20.h │ │ ├── k051649.c │ │ ├── k051649.h │ │ ├── k053260.c │ │ ├── k053260.h │ │ ├── k054539.c │ │ ├── k054539.h │ │ ├── mikey.c │ │ ├── mikey.h │ │ ├── multipcm.c │ │ ├── multipcm.h │ │ ├── nes_apu.c │ │ ├── nes_apu.h │ │ ├── nes_defs.h │ │ ├── nesintf.c │ │ ├── nesintf.h │ │ ├── np_nes_apu.c │ │ ├── np_nes_apu.h │ │ ├── np_nes_dmc.c │ │ ├── np_nes_dmc.h │ │ ├── np_nes_fds.c │ │ ├── np_nes_fds.h │ │ ├── nukedopl3.c │ │ ├── nukedopl3.h │ │ ├── nukedopl3_int.h │ │ ├── nukedopll.c │ │ ├── nukedopll.h │ │ ├── nukedopll_int.h │ │ ├── nukedopm.c │ │ ├── nukedopm.h │ │ ├── nukedopm_int.h │ │ ├── okiadpcm.c │ │ ├── okiadpcm.h │ │ ├── okim6258.c │ │ ├── okim6258.h │ │ ├── okim6295.c │ │ ├── okim6295.h │ │ ├── oplintf.c │ │ ├── oplintf.h │ │ ├── opll_2413tone.h │ │ ├── opll_281btone.h │ │ ├── opll_vrc7tone.h │ │ ├── opnintf.c │ │ ├── opnintf.h │ │ ├── pokey.c │ │ ├── pokey.h │ │ ├── pwm.c │ │ ├── pwm.h │ │ ├── qsound_ctr.c │ │ ├── qsound_ctr.h │ │ ├── qsound_mame.c │ │ ├── qsound_mame.h │ │ ├── qsoundintf.c │ │ ├── qsoundintf.h │ │ ├── rf5c68.c │ │ ├── rf5c68.h │ │ ├── rf5cintf.c │ │ ├── rf5cintf.h │ │ ├── saa1099_mame.c │ │ ├── saa1099_mame.h │ │ ├── saa1099_vb.c │ │ ├── saa1099_vb.h │ │ ├── saaintf.c │ │ ├── saaintf.h │ │ ├── scd_pcm.c │ │ ├── scd_pcm.h │ │ ├── scsp.c │ │ ├── scsp.h │ │ ├── scspdsp.c │ │ ├── scspdsp.h │ │ ├── scsplfo.c │ │ ├── segapcm.c │ │ ├── segapcm.h │ │ ├── sn76489.c │ │ ├── sn76489.h │ │ ├── sn76489_private.h │ │ ├── sn76496.c │ │ ├── sn76496.h │ │ ├── sn764intf.c │ │ ├── sn764intf.h │ │ ├── upd7759.c │ │ ├── upd7759.h │ │ ├── vsu.c │ │ ├── vsu.h │ │ ├── ws_audio.c │ │ ├── ws_audio.h │ │ ├── ws_initialIo.h │ │ ├── x1_010.c │ │ ├── x1_010.h │ │ ├── ym2151.c │ │ ├── ym2151.h │ │ ├── ym2413.c │ │ ├── ym2413.h │ │ ├── ym2612.c │ │ ├── ym2612.h │ │ ├── ym2612_int.h │ │ ├── ym3438.c │ │ ├── ym3438.h │ │ ├── ym3438_int.h │ │ ├── ymdeltat.c │ │ ├── ymdeltat.h │ │ ├── ymf262.c │ │ ├── ymf262.h │ │ ├── ymf271.c │ │ ├── ymf271.h │ │ ├── ymf278b.c │ │ ├── ymf278b.h │ │ ├── ymz280b.c │ │ └── ymz280b.h │ ├── dac_control.c │ ├── dac_control.h │ ├── logging.c │ ├── logging.h │ ├── panning.c │ ├── panning.h │ └── snddef.h ├── emutest.c ├── libAudio.vcxproj ├── libAudio.vcxproj.filters ├── libEmu.vcxproj ├── libEmu.vcxproj.filters ├── libVgmTest.sln ├── libVgmTest.vcxproj ├── libVgmTest.vcxproj.filters ├── libs │ ├── cmake_modules │ │ ├── FindIconv.cmake │ │ └── FindLibAO.cmake │ ├── iconv │ │ ├── Info.txt │ │ ├── include │ │ │ └── iconv.h │ │ └── lib │ │ │ ├── libiconv.exp │ │ │ └── libiconv.lib │ ├── include │ │ ├── zconf.h │ │ └── zlib.h │ ├── include_mingw │ │ ├── Note.txt │ │ ├── XAudio2.h │ │ ├── audiodefs.h │ │ ├── comdecl.h │ │ ├── sal_stub.h │ │ └── xma2defs.h │ ├── include_vc │ │ ├── XAudio2.h │ │ ├── audiodefs.h │ │ ├── comdecl.h │ │ └── xma2defs.h │ ├── include_vc6 │ │ └── sal.h │ └── lib │ │ ├── zdll.lib │ │ ├── zlib.def │ │ ├── zlib.lib │ │ ├── zlib.txt │ │ ├── zlib64.lib │ │ ├── zlib64d.lib │ │ └── zlibd.lib ├── player.cpp ├── player │ ├── CMakeLists.txt │ ├── dblk_compr.c │ ├── dblk_compr.h │ ├── droplayer.cpp │ ├── droplayer.hpp │ ├── gymplayer.cpp │ ├── gymplayer.hpp │ ├── helper.c │ ├── helper.h │ ├── player_wrapper.cpp │ ├── playera.cpp │ ├── playera.hpp │ ├── playerbase.cpp │ ├── playerbase.hpp │ ├── s98player.cpp │ ├── s98player.hpp │ ├── vgmplayer.cpp │ ├── vgmplayer.hpp │ └── vgmplayer_cmdhandler.cpp ├── stdbool.h ├── stdtype.h ├── utils │ ├── CMakeLists.txt │ ├── DataLoader.c │ ├── DataLoader.h │ ├── FileLoader.c │ ├── FileLoader.h │ ├── MemoryLoader.c │ ├── MemoryLoader.h │ ├── OSMutex.h │ ├── OSMutex_POSIX.c │ ├── OSMutex_Win.c │ ├── OSSignal.h │ ├── OSSignal_POSIX.c │ ├── OSSignal_Win.c │ ├── OSThread.h │ ├── OSThread_POSIX.c │ ├── OSThread_Win.c │ ├── StrUtils-CPConv_IConv.c │ ├── StrUtils-CPConv_Win.c │ └── StrUtils.h ├── vgm2wav.cpp ├── vgm_dbcompr_bench.c └── vgmtest.c ├── libxmp ├── .github │ ├── codecov.yml │ └── workflows │ │ ├── coverage.yaml │ │ ├── dist-package.yaml │ │ └── regression.yaml ├── .gitignore ├── CMakeLists.txt ├── INSTALL ├── Makefile.in ├── Makefile.lite ├── Makefile.os2 ├── Makefile.vc ├── Makefile.vc.in ├── Makefile.w32 ├── README ├── TODO.5 ├── aclocal.m4 ├── autogen.sh ├── cmake │ ├── Makefile │ ├── libxmp-checks.cmake │ ├── libxmp-sources.cmake │ └── libxmp-sources.cmake.in ├── config.guess ├── config.sub ├── configure.ac ├── docs │ ├── COPYING.LIB │ ├── CREDITS │ ├── Changelog │ ├── Makefile │ ├── adlib_sb.txt │ ├── ay-3-8912.txt │ ├── coverity.c │ ├── custom.style │ ├── fixloop.txt │ ├── formats.txt │ ├── formats │ │ ├── 669-form.txt │ │ ├── 669.doc │ │ ├── 669.txt │ │ ├── AMOS_Music_Bank_format.txt │ │ ├── Coconizer_FileFormat.txt │ │ ├── Coconizer_FileFormax.txt │ │ ├── DigiBoosterPro.txt │ │ ├── FORMAT.FunktrackerGOLD │ │ ├── FORMAT.Protracker │ │ ├── Formats.guide │ │ ├── GnuPlayer_fmt.txt │ │ ├── JamCracker.txt │ │ ├── JamCracker_TN.txt │ │ ├── Medsynth.txt │ │ ├── Modfil11.txt │ │ ├── Mtm-form.txt │ │ ├── PT-Fileformat_3.01.doc │ │ ├── PT-Fileformat_3.61.doc │ │ ├── PT-Play_2.1a.s │ │ ├── PT.Effects_2.1a.txt │ │ ├── PT.FileFormat_2.1a.txt │ │ ├── Ptmform.txt │ │ ├── QuadraComposer.txt │ │ ├── STAR-FRM.TXT │ │ ├── Soundtracker-Samplefiles.txt │ │ ├── Startrekker_AMFM.txt │ │ ├── Ultimate_Soundtracker-format.txt │ │ ├── ahxformat.txt │ │ ├── amf.txt │ │ ├── ampd041.txt │ │ ├── amusic.txt │ │ ├── archimedes_tracker.txt │ │ ├── asif.txt │ │ ├── coconizer-notes.txt │ │ ├── d00.txt │ │ ├── digi-format.txt │ │ ├── digital-tracker.txt │ │ ├── digital_symphony.txt │ │ ├── digitracker.txt │ │ ├── dmf-fileformat.txt │ │ ├── dmf-form.txt │ │ ├── dtm-1.0.txt │ │ ├── dtt-effects.txt │ │ ├── dtt-format.txt │ │ ├── far100.doc │ │ ├── filters.txt │ │ ├── gdm.txt │ │ ├── graoumf-effects.txt │ │ ├── graoumf.txt │ │ ├── hsc.txt │ │ ├── imf10.txt │ │ ├── it-effects.txt │ │ ├── it-nna.txt │ │ ├── it_samples.txt │ │ ├── ittech.txt │ │ ├── j2b_format.txt │ │ ├── liq-effects.txt │ │ ├── liq-format.txt │ │ ├── liq-ldss.txt │ │ ├── liq-notes.txt │ │ ├── mdl-effects.txt │ │ ├── mdl-format.txt │ │ ├── med112-effects.txt │ │ ├── med200-effects.txt │ │ ├── mfp-format.txt │ │ ├── mgtk.txt │ │ ├── mmd1_r1.txt │ │ ├── mmd3_r6.txt │ │ ├── mtn-format.txt │ │ ├── octamed2.00-effects.txt │ │ ├── octamed2.00-hold-decay.txt │ │ ├── octamed4.00-effects.txt │ │ ├── octamedss1.03-effects.txt │ │ ├── oktafmt.txt │ │ ├── plm.txt │ │ ├── ps16.txt │ │ ├── psm-efx.doc │ │ ├── psm-format.txt │ │ ├── psm.txt │ │ ├── rad.txt │ │ ├── rtm-effects.txt │ │ ├── rtmspec-1.10.txt │ │ ├── rtmspec-1.12.txt │ │ ├── s3m-effects.txt │ │ ├── sfx-format.txt │ │ ├── soundsmith-format.txt │ │ ├── soundtracker.txt │ │ ├── stm-effects.txt │ │ ├── stm.txt │ │ ├── stx-format.txt │ │ ├── tcb-tracker.txt │ │ ├── tech.doc │ │ ├── tfmx-format.txt │ │ ├── tt-form.txt │ │ ├── upkg.txt │ │ ├── ut.txt │ │ └── xm.txt │ ├── libxmp.rst │ ├── manpage-header.rst │ ├── modguide │ │ ├── Changes.txt │ │ ├── compute-blep.py │ │ ├── computed-blep_c_source.txt │ │ ├── interpolate.txt │ │ ├── note-guide-unfinished.txt │ │ └── results │ │ │ ├── a1200_off.png │ │ │ ├── a1200_on.png │ │ │ ├── a4000_off.png │ │ │ ├── a500_off.png │ │ │ ├── a500_on.png │ │ │ ├── comb1200_off.png │ │ │ ├── comb1200_on.png │ │ │ ├── comb4000_off.png │ │ │ ├── comb500_off.png │ │ │ └── comb500_on.png │ ├── st02-ok.sample │ ├── style.css │ └── tracker_notes.txt ├── examples │ ├── CMakeLists.txt │ ├── Makefile │ ├── alsa.c │ ├── player-getbuffer.c │ ├── player-openal-buffer.c │ ├── player-openal.c │ ├── player-sdl-smix.c │ ├── player-sdl.c │ ├── player-showpatterns.c │ ├── player-simple.c │ ├── showinfo.c │ └── sound.h ├── include │ ├── Makefile │ └── xmp.h ├── install-sh ├── jni │ ├── Android.mk │ └── Application.mk ├── libxmp.map ├── libxmp.pc.in ├── lite │ ├── CMakeLists.txt │ ├── Changelog │ ├── Makefile.in.in │ ├── Makefile.os2 │ ├── Makefile.vc.in │ ├── Makefile.w32 │ ├── README │ ├── cmake │ │ └── libxmp-sources.cmake.in │ ├── configure.ac │ ├── include │ │ └── libxmp-lite │ │ │ └── Makefile │ ├── jni │ │ └── Android.mk │ ├── libxmp-lite.pc.in │ ├── src │ │ ├── Makefile │ │ ├── format.c │ │ └── loaders │ │ │ ├── Makefile │ │ │ └── mod_load.c │ ├── test │ │ ├── CMakeLists.txt │ │ └── Makefile │ └── watcom.mif.in ├── m4 │ ├── Makefile │ └── ld.m4 ├── src │ ├── Makefile │ ├── callbackio.h │ ├── common.h │ ├── control.c │ ├── dataio.c │ ├── depackers │ │ ├── Makefile │ │ ├── README.unxz │ │ ├── arcfs.c │ │ ├── bunzip2.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── depacker.c │ │ ├── depacker.h │ │ ├── gunzip.c │ │ ├── miniz.h │ │ ├── miniz_tinfl.c │ │ ├── miniz_zip.c │ │ ├── miniz_zip.h │ │ ├── mmcmp.c │ │ ├── muse.c │ │ ├── ppdepack.c │ │ ├── ptpopen.c │ │ ├── ptpopen.h │ │ ├── readhuff.c │ │ ├── readhuff.h │ │ ├── readlzw.c │ │ ├── readlzw.h │ │ ├── readrle.c │ │ ├── readrle.h │ │ ├── s404_dec.c │ │ ├── unarc.c │ │ ├── uncompress.c │ │ ├── unlha.c │ │ ├── unlzx.c │ │ ├── unsqsh.c │ │ ├── unxz.c │ │ ├── unzip.c │ │ ├── unzoo.c │ │ ├── xfd.c │ │ ├── xfd_link.c │ │ ├── xfnmatch.c │ │ ├── xfnmatch.h │ │ ├── xz.h │ │ ├── xz_config.h │ │ ├── xz_dec_lzma2.c │ │ ├── xz_dec_stream.c │ │ ├── xz_lzma2.h │ │ ├── xz_private.h │ │ └── xz_stream.h │ ├── effects.c │ ├── effects.h │ ├── extras.c │ ├── extras.h │ ├── far_extras.c │ ├── far_extras.h │ ├── filetype.c │ ├── filter.c │ ├── fmopl.c │ ├── fmopl.h │ ├── format.c │ ├── format.h │ ├── hio.c │ ├── hio.h │ ├── hmn_extras.c │ ├── hmn_extras.h │ ├── lfo.c │ ├── lfo.h │ ├── list.h │ ├── load.c │ ├── load_helpers.c │ ├── loaders │ │ ├── 669_load.c │ │ ├── Makefile │ │ ├── abk_load.c │ │ ├── alm_load.c │ │ ├── amd_load.c │ │ ├── amf_load.c │ │ ├── arch_load.c │ │ ├── asif.c │ │ ├── asif.h │ │ ├── asylum_load.c │ │ ├── chip_load.c │ │ ├── coco_load.c │ │ ├── common.c │ │ ├── dbm_load.c │ │ ├── digi_load.c │ │ ├── dmf_load.c │ │ ├── dt_load.c │ │ ├── dtt_load.c │ │ ├── emod_load.c │ │ ├── far_load.c │ │ ├── fcm_load.c │ │ ├── flt_load.c │ │ ├── fnk_load.c │ │ ├── ftm_load.c │ │ ├── gal4_load.c │ │ ├── gal5_load.c │ │ ├── gdm_load.c │ │ ├── gtk_load.c │ │ ├── hmn_load.c │ │ ├── hsc_load.c │ │ ├── hvl_load.c │ │ ├── ice_load.c │ │ ├── iff.c │ │ ├── iff.h │ │ ├── imf_load.c │ │ ├── ims_load.c │ │ ├── it.h │ │ ├── it_load.c │ │ ├── itsex.c │ │ ├── liq_load.c │ │ ├── loader.h │ │ ├── lzw.c │ │ ├── lzw.h │ │ ├── masi_load.c │ │ ├── mdl_load.c │ │ ├── med.h │ │ ├── med2_load.c │ │ ├── med3_load.c │ │ ├── med4_load.c │ │ ├── mfp_load.c │ │ ├── mgt_load.c │ │ ├── mmd1_load.c │ │ ├── mmd3_load.c │ │ ├── mmd_common.c │ │ ├── mod.h │ │ ├── mod_load.c │ │ ├── mtm_load.c │ │ ├── no_load.c │ │ ├── okt_load.c │ │ ├── polly_load.c │ │ ├── prowizard │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── ac1d.c │ │ │ ├── di.c │ │ │ ├── eureka.c │ │ │ ├── fc-m.c │ │ │ ├── fuchs.c │ │ │ ├── fuzzac.c │ │ │ ├── gmc.c │ │ │ ├── heatseek.c │ │ │ ├── hrt.c │ │ │ ├── kris.c │ │ │ ├── ksm.c │ │ │ ├── mp.c │ │ │ ├── noiserun.c │ │ │ ├── novotrade.c │ │ │ ├── np1.c │ │ │ ├── np2.c │ │ │ ├── np3.c │ │ │ ├── p40.c │ │ │ ├── p61a.c │ │ │ ├── pha.c │ │ │ ├── pm.c │ │ │ ├── pm01.c │ │ │ ├── pm10c.c │ │ │ ├── pm18a.c │ │ │ ├── pm20.c │ │ │ ├── pm40.c │ │ │ ├── pp10.c │ │ │ ├── pp21.c │ │ │ ├── pp30.c │ │ │ ├── prowiz.c │ │ │ ├── prowiz.h │ │ │ ├── prun1.c │ │ │ ├── prun2.c │ │ │ ├── ptk.c │ │ │ ├── ptktable.c │ │ │ ├── qc.c │ │ │ ├── skyt.c │ │ │ ├── soundfx.c │ │ │ ├── soundtk.c │ │ │ ├── starpack.c │ │ │ ├── stim.c │ │ │ ├── tdd.c │ │ │ ├── theplayer.c │ │ │ ├── titanics.c │ │ │ ├── tp1.c │ │ │ ├── tp2.c │ │ │ ├── tp3.c │ │ │ ├── tuning.c │ │ │ ├── unic.c │ │ │ ├── unic2.c │ │ │ ├── wn.c │ │ │ ├── xann.c │ │ │ └── zen.c │ │ ├── psm_load.c │ │ ├── pt3_load.c │ │ ├── ptm_load.c │ │ ├── pw_load.c │ │ ├── rad_load.c │ │ ├── rtm_load.c │ │ ├── s3m.h │ │ ├── s3m_load.c │ │ ├── sample.c │ │ ├── sfx_load.c │ │ ├── ssmt_load.c │ │ ├── st_load.c │ │ ├── stc_load.c │ │ ├── stim_load.c │ │ ├── stm_load.c │ │ ├── stx_load.c │ │ ├── sym_load.c │ │ ├── tcb_load.c │ │ ├── ult_load.c │ │ ├── umx_load.c │ │ ├── voltable.c │ │ ├── vorbis.c │ │ ├── vorbis.h │ │ ├── xm.h │ │ └── xm_load.c │ ├── lutgen.c │ ├── md5.c │ ├── md5.h │ ├── mdataio.h │ ├── med_extras.c │ ├── med_extras.h │ ├── memio.c │ ├── memio.h │ ├── misc.c │ ├── mix_all.c │ ├── mix_paula.c │ ├── mixer.c │ ├── mixer.h │ ├── mkstemp.c │ ├── paula.h │ ├── period.c │ ├── period.h │ ├── player.c │ ├── player.h │ ├── precomp_blep.h │ ├── precomp_lut.h │ ├── read_event.c │ ├── scan.c │ ├── smix.c │ ├── tempfile.c │ ├── tempfile.h │ ├── virtual.c │ ├── virtual.h │ └── win32.c ├── test-dev │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── Makefile.vc │ ├── Makefile.vc.in │ ├── all_tests.txt │ ├── compare_mixer_data.c │ ├── configure.ac │ ├── data │ │ ├── 038984 │ │ ├── CAVE-EchoBBS-1.StarTrekkerPack │ │ ├── FineVolRowDelayMultiple.data │ │ ├── FineVolRowDelayMultiple.it │ │ ├── G00_nosuck.data │ │ ├── G00_nosuck.it │ │ ├── Gaffeltruck.mod │ │ ├── Inertiaload-1.med │ │ ├── L00_nosuck.data │ │ ├── L00_nosuck.it │ │ ├── MED.Synth-a-sysmic │ │ ├── NoteOff_nosuck.data │ │ ├── NoteOff_nosuck.it │ │ ├── PERIOD.MDL │ │ ├── PRU1.intro-electro │ │ ├── PRU2.PDX-Perihelion │ │ ├── TDZ3.MOD │ │ ├── ZEN-dif-prty.exe │ │ ├── adlib.data │ │ ├── adlib.s3m-corrupted │ │ ├── adlibsp.rad.gz │ │ ├── again.stc │ │ ├── arc-method2 │ │ ├── arc-method8-rle │ │ ├── arcfsdata │ │ ├── beep.oxm │ │ ├── beep.raw │ │ ├── bidi_sync.it │ │ ├── bidi_sync.xm │ │ ├── blip.wav │ │ ├── break_to_row.data │ │ ├── break_to_row.it │ │ ├── buzz.wav │ │ ├── bzip2data │ │ ├── compressdata │ │ ├── corrupted.gz │ │ ├── downmix.data │ │ ├── f │ │ │ ├── depack_arc_large_output │ │ │ ├── depack_arc_lzw_invalid │ │ │ ├── depack_arc_lzw_leak │ │ │ ├── depack_arc_slow_rle │ │ │ ├── depack_arcfs_invalid_bits │ │ │ ├── depack_arcfs_lzw_leak │ │ │ ├── depack_arcfs_negative_header_size │ │ │ ├── depack_arcfs_negative_size │ │ │ ├── depack_arcfs_no_files │ │ │ ├── depack_arcfs_zero_length │ │ │ ├── depack_bz2_invalid_selector.bz2 │ │ │ ├── depack_compress_invalid_maxbits.Z │ │ │ ├── depack_gzip_invalid_name.gz │ │ │ ├── depack_gzip_truncated.gz │ │ │ ├── depack_lha_invalid_clen.lha │ │ │ ├── depack_lha_invalid_tree.lha │ │ │ ├── depack_lha_truncated.lha │ │ │ ├── depack_lzx_invalid.lzx │ │ │ ├── depack_muse_truncated.j2b │ │ │ ├── depack_muse_truncated2.j2b │ │ │ ├── depack_oxm_invalid.oxm │ │ │ ├── depack_oxm_invalid2.oxm │ │ │ ├── depack_oxm_pcm_leak.oxm │ │ │ ├── depack_oxm_truncated.oxm │ │ │ ├── depack_oxm_truncated2.oxm │ │ │ ├── depack_oxm_truncated3.oxm │ │ │ ├── depack_oxm_truncated4.oxm │ │ │ ├── depack_pp20_invalid │ │ │ ├── depack_s404_invalid_length │ │ │ ├── depack_s404_invalid_shift │ │ │ ├── depack_sqsh_invalid_verbatim.xpk │ │ │ ├── depack_sqsh_misaligned.xpk │ │ │ ├── depack_sqsh_no_checksum.xpk │ │ │ ├── depack_sqsh_truncated.xpk │ │ │ ├── depack_sqsh_truncated2.xpk │ │ │ ├── depack_zip_truncated.zip │ │ │ ├── depack_zip_truncated2.zip │ │ │ ├── depack_zip_truncated3.zip │ │ │ ├── depack_zip_truncated4.zip │ │ │ ├── load_669_truncated.669 │ │ │ ├── load_abk_0_instruments.abk │ │ │ ├── load_abk_truncated.abk │ │ │ ├── load_amf_truncated.amf │ │ │ ├── load_amf_truncated2.amf │ │ │ ├── load_arch_invalid_patterns │ │ │ ├── load_asy_invalid_samples.amf │ │ │ ├── load_asy_invalid_samples2.amf │ │ │ ├── load_chip_truncated.mod │ │ │ ├── load_coco_invalid_sequence │ │ │ ├── load_dbm_chunk_order.dbm │ │ │ ├── load_dbm_invalid_instruments.dbm │ │ │ ├── load_dbm_name_buffer_overflow.dbm │ │ │ ├── load_dbm_sample_count.dbm │ │ │ ├── load_dbm_truncated.dbm │ │ │ ├── load_dbm_truncated2.dbm │ │ │ ├── load_dbm_truncated_inst.dbm │ │ │ ├── load_digi_truncated.digi │ │ │ ├── load_digi_truncated2.digi │ │ │ ├── load_digi_truncated3.digi │ │ │ ├── load_digi_truncated4.digi │ │ │ ├── load_dt_channels_bound.dtm │ │ │ ├── load_dt_duplicate_chunk.dtm │ │ │ ├── load_dt_instrument_count.dtm.xz │ │ │ ├── load_dt_invalid_loop.dtm │ │ │ ├── load_dt_truncated.dtm │ │ │ ├── load_emod_duplicate_chunk.emod │ │ │ ├── load_far_truncated.far │ │ │ ├── load_flt_umr.mod │ │ │ ├── load_fnk_channels_bound.fnk │ │ │ ├── load_fnk_channels_bound_2.fnk │ │ │ ├── load_fnk_invalid_sample_size.fnk.xz │ │ │ ├── load_fnk_patterns_bound.fnk │ │ │ ├── load_fnk_truncated.fnk │ │ │ ├── load_gal4_duplicate_instrument │ │ │ ├── load_gal4_env_point_bound │ │ │ ├── load_gal4_env_point_bound.data │ │ │ ├── load_gal4_invalid_sample_num │ │ │ ├── load_gal4_truncated │ │ │ ├── load_gal5_channels_bound │ │ │ ├── load_gal5_duplicate_instrument.xz │ │ │ ├── load_gal5_invalid_sample_num │ │ │ ├── load_gal5_truncated │ │ │ ├── load_gal5_truncated_info │ │ │ ├── load_gdm_invalid_sample_size.gdm │ │ │ ├── load_gdm_samples_bound.gdm.xz │ │ │ ├── load_gdm_truncated.gdm │ │ │ ├── load_gdm_truncated_header.gdm │ │ │ ├── load_hmn_truncated.mod │ │ │ ├── load_ice_truncated.mod │ │ │ ├── load_imf_truncated.imf │ │ │ ├── load_ims_scan_loop.ims │ │ │ ├── load_ims_truncated_magic.ims │ │ │ ├── load_it_dca_3.it │ │ │ ├── load_it_invalid_compressed.it │ │ │ ├── load_it_invalid_compressed2.it │ │ │ ├── load_it_long_patterns.it.xz │ │ │ ├── load_it_truncated_header.it │ │ │ ├── load_it_truncated_pattern.it │ │ │ ├── load_liq_no_valid_orders.liq │ │ │ ├── load_liq_truncated.liq │ │ │ ├── load_liq_truncated2.liq │ │ │ ├── load_masi_invalid_length.psm │ │ │ ├── load_masi_seek_loop.psm │ │ │ ├── load_masi_truncated.psm │ │ │ ├── load_masi_truncated2.psm │ │ │ ├── load_mdl_duplicate_chunk.mdl │ │ │ ├── load_mdl_duplicate_i0_chunk.mdl │ │ │ ├── load_mdl_duplicate_is_chunk.mdl │ │ │ ├── load_mdl_duplicate_pa_chunk.mdl │ │ │ ├── load_mdl_duplicate_sa_chunk.mdl │ │ │ ├── load_mdl_ii_after_is.mdl │ │ │ ├── load_mdl_invalid_chunk_order.mdl │ │ │ ├── load_mdl_invalid_run.mdl │ │ │ ├── load_mdl_invalid_sample_loop.mdl │ │ │ ├── load_mdl_invalid_sample_loop2.mdl │ │ │ ├── load_mdl_invalid_sample_loop3.mdl │ │ │ ├── load_mdl_invalid_sample_pack.mdl │ │ │ ├── load_mdl_invalid_sample_size.mdl │ │ │ ├── load_mdl_invalid_sample_size2.mdl │ │ │ ├── load_mdl_invalid_sample_size3.mdl │ │ │ ├── load_mdl_truncated.mdl │ │ │ ├── load_mdl_truncated2.mdl │ │ │ ├── load_mdl_umr.mdl │ │ │ ├── load_med2_truncated.med │ │ │ ├── load_med3_invalid_pattern.med │ │ │ ├── load_med4_instrument_name.med │ │ │ ├── load_med4_invalid_iff.med │ │ │ ├── load_med4_invalid_iff2.med │ │ │ ├── load_med4_invalid_sample.med │ │ │ ├── load_med4_invalid_sample2.med │ │ │ ├── load_med4_invalid_sample3.med │ │ │ ├── load_mfp_truncated.mfp │ │ │ ├── load_mgt_patterns_bound.mgt │ │ │ ├── load_mmd0_invalid_block.med │ │ │ ├── load_mmd0_sample_count.med │ │ │ ├── load_mmd0_truncated.med │ │ │ ├── load_mmd1_channel_count.med │ │ │ ├── load_mmd1_instrument_count.med │ │ │ ├── load_mmd1_invalid_block.med │ │ │ ├── load_mmd1_invalid_blockarr.med │ │ │ ├── load_mmd1_invalid_blockarr2.med │ │ │ ├── load_mmd1_invalid_blocklines.med │ │ │ ├── load_mmd1_invalid_blockptr.med │ │ │ ├── load_mmd1_invalid_expdata.med │ │ │ ├── load_mmd1_invalid_expdata2.med │ │ │ ├── load_mmd1_invalid_instptr.med │ │ │ ├── load_mmd1_invalid_instrext.med │ │ │ ├── load_mmd1_invalid_instrinfo.med │ │ │ ├── load_mmd1_invalid_insttype.med │ │ │ ├── load_mmd1_invalid_instwform.med │ │ │ ├── load_mmd1_invalid_smplarr.med │ │ │ ├── load_mmd1_invalid_smplarr2.med │ │ │ ├── load_mmd1_truncated.med │ │ │ ├── load_mmd2_channel_count.med │ │ │ ├── load_mmd2_instrument_count.med │ │ │ ├── load_mmd2_invalid_block.med │ │ │ ├── load_mmd2_invalid_blockarr.med │ │ │ ├── load_mmd2_invalid_blockarr2.med │ │ │ ├── load_mmd2_invalid_blocklines.med │ │ │ ├── load_mmd2_invalid_blockptr.med │ │ │ ├── load_mmd2_invalid_expdata.med │ │ │ ├── load_mmd2_invalid_expdata2.med │ │ │ ├── load_mmd2_invalid_expdata3.med │ │ │ ├── load_mmd2_invalid_instptr.med │ │ │ ├── load_mmd2_invalid_instrext.med │ │ │ ├── load_mmd2_invalid_instrinfo.med │ │ │ ├── load_mmd2_invalid_smplarr.med │ │ │ ├── load_mmd2_invalid_smplarr2.med │ │ │ ├── load_mmd3_invalid_blockarr.med │ │ │ ├── load_mmd3_invalid_mmdinfo.med │ │ │ ├── load_mmd3_invalid_sample_size.med.xz │ │ │ ├── load_mmd3_truncated.med │ │ │ ├── load_mod_no_null_terminator.mod │ │ │ ├── load_mod_no_valid_orders.mod │ │ │ ├── load_mod_scan_row_limit.mod.xz │ │ │ ├── load_mtm_channels_bound.mtm │ │ │ ├── load_okt_duplicate_chunk.okt │ │ │ ├── load_okt_invalid_chunk_order.okt │ │ │ ├── load_okt_sbod_leak.okt │ │ │ ├── load_psm_samples_bound.psm │ │ │ ├── load_psm_samples_bound2.psm │ │ │ ├── load_pt3_ptdt_leak.pt36 │ │ │ ├── load_pt3_truncated.pt36 │ │ │ ├── load_pt3_truncated2.pt36 │ │ │ ├── load_ptm_truncated.ptm │ │ │ ├── load_rtm_truncated.rtm │ │ │ ├── load_rtm_zero_samples.rtm │ │ │ ├── load_s3m_invalid_sample_size.s3m │ │ │ ├── load_s3m_invalid_sample_size2.s3m │ │ │ ├── load_sfx_truncated.sfx │ │ │ ├── load_st_invalid_sample_count.mod.xz │ │ │ ├── load_st_truncated.mod │ │ │ ├── load_stim_truncated │ │ │ ├── load_stm_patterns_bound.stm │ │ │ ├── load_stx_instruments_bound.stx │ │ │ ├── load_stx_truncated.stx │ │ │ ├── load_stx_truncated2.stx │ │ │ ├── load_sym_bad_sigmadelta.sym │ │ │ ├── load_sym_truncated.sym │ │ │ ├── load_sym_truncated_lzw.sym │ │ │ ├── load_ult_channels_bound.ult │ │ │ ├── load_ult_invalid_sample.ult │ │ │ ├── load_ult_invalid_tracks.ult │ │ │ ├── load_ult_truncated.ult │ │ │ ├── load_ult_truncated2.ult │ │ │ ├── load_ult_v000.ult │ │ │ ├── load_umx_invalid_names.umx.xz │ │ │ ├── load_xm_negative_instsize.xm │ │ │ ├── load_xm_orders_mismatch.xm │ │ │ ├── load_xm_vorbis_crash.oxm │ │ │ ├── load_xm_vorbis_crash2.oxm │ │ │ ├── load_xm_vorbis_leak.oxm │ │ │ ├── load_xm_zero_samples.xm │ │ │ ├── play_669_low_freq.669 │ │ │ ├── play_asylum_bad_effects.amf │ │ │ ├── play_dbm_inst_no_samples.dbm │ │ │ ├── play_far_highbpm.far │ │ │ ├── play_gdm_bad_loop.gdm │ │ │ ├── play_hmn_bad_megaarp.mod │ │ │ ├── play_it_bad_env_sustain.it │ │ │ ├── play_it_bad_set_nna.it │ │ │ ├── play_it_row_0_loop_row_delay.it │ │ │ ├── play_it_sustain_bidi.it │ │ │ ├── play_mdl_zero_samples.mdl │ │ │ ├── play_med4_0_chn_invalid_ord.med │ │ │ ├── play_mmd1_synth_bad_arpeggio.med │ │ │ ├── play_mmd1_synth_bad_voltable.med │ │ │ ├── play_mmd1_synth_bad_wavtable.med │ │ │ ├── play_mod_bad_invloop.mod │ │ │ ├── play_stm_bad_note_toneporta.stm │ │ │ ├── play_xm_bad_env_sustain.xm │ │ │ ├── play_xm_bad_instrument.xm │ │ │ ├── prowizard_ac1d_invalid_note │ │ │ ├── prowizard_ac1d_invalid_paddr │ │ │ ├── prowizard_di_invalid_offsets │ │ │ ├── prowizard_di_invalid_offsets2 │ │ │ ├── prowizard_di_invalid_offsets3 │ │ │ ├── prowizard_di_patterns_bound │ │ │ ├── prowizard_di_patterns_test.xz │ │ │ ├── prowizard_di_truncated │ │ │ ├── prowizard_eureka_truncated │ │ │ ├── prowizard_fuchs_pattern_length.xz │ │ │ ├── prowizard_heatseek_truncated │ │ │ ├── prowizard_ksm_invalid_pattern │ │ │ ├── prowizard_noiserun_invalid_sample │ │ │ ├── prowizard_noiserun_truncated │ │ │ ├── prowizard_novotrade_invalid_order.ntp │ │ │ ├── prowizard_novotrade_orders_bound.ntp │ │ │ ├── prowizard_novotrade_patterns_bound.ntp │ │ │ ├── prowizard_np2_patterns_bound.xz │ │ │ ├── prowizard_np3_invalid_note │ │ │ ├── prowizard_np3_patterns_bound.xz │ │ │ ├── prowizard_p40_invalid_offsets │ │ │ ├── prowizard_p40_invalid_packing │ │ │ ├── prowizard_p40_invalid_sample │ │ │ ├── prowizard_p40_invalid_sample2 │ │ │ ├── prowizard_p40_zero_length │ │ │ ├── prowizard_p61a_invalid_note │ │ │ ├── prowizard_p61a_invalid_note2 │ │ │ ├── prowizard_p61a_invalid_note3 │ │ │ ├── prowizard_p61a_invalid_note4 │ │ │ ├── prowizard_p61a_invalid_note5.xz │ │ │ ├── prowizard_p61a_invalid_note6 │ │ │ ├── prowizard_p61a_invalid_sample_dup │ │ │ ├── prowizard_p61a_truncated │ │ │ ├── prowizard_p61a_truncated2 │ │ │ ├── prowizard_pha_invalid_note │ │ │ ├── prowizard_pha_invalid_offset │ │ │ ├── prowizard_pha_invalid_paddr │ │ │ ├── prowizard_pha_patterns_bound │ │ │ ├── prowizard_pha_truncated │ │ │ ├── prowizard_pm10c_invalid_note.xz │ │ │ ├── prowizard_pm10c_invalid_pattern.xz │ │ │ ├── prowizard_pm10c_invalid_psize.xz │ │ │ ├── prowizard_pm10c_zero_length │ │ │ ├── prowizard_pm18a_invalid_note │ │ │ ├── prowizard_pm18a_invalid_paddr │ │ │ ├── prowizard_pm18a_zero_length │ │ │ ├── prowizard_pp10_invalid_pattern.xz │ │ │ ├── prowizard_pp21_truncated │ │ │ ├── prowizard_pp30_invalid.xz │ │ │ ├── prowizard_starpack_junk_orders │ │ │ ├── prowizard_theplayer_invalid_note.xz │ │ │ ├── prowizard_theplayer_invalid_sample_dup │ │ │ ├── prowizard_titanics_truncated │ │ │ ├── prowizard_tp1_invalid_length.xz │ │ │ ├── prowizard_tp1_invalid_paddr │ │ │ ├── prowizard_tp3_patterns_bound │ │ │ ├── prowizard_tp3_samples_bound │ │ │ ├── prowizard_unic_truncated │ │ │ ├── prowizard_xann_invalid │ │ │ ├── prowizard_zen_invalid_note │ │ │ └── test_abk_title.abk │ │ ├── far_effect1.data │ │ ├── far_effect1.far │ │ ├── far_effect3.data │ │ ├── far_effect3.far │ │ ├── far_effect4.data │ │ ├── far_effect4.far │ │ ├── far_effect6.data │ │ ├── far_effect6.far │ │ ├── far_effect9.data │ │ ├── far_effect9.far │ │ ├── far_effectA.data │ │ ├── far_effectA.far │ │ ├── far_effectC.data │ │ ├── far_effectC.far │ │ ├── far_effectF.data │ │ ├── far_effectF.far │ │ ├── far_effects.far │ │ ├── feel it dance!.zip │ │ ├── format_669.data │ │ ├── format_6chn.data │ │ ├── format_abk.data │ │ ├── format_ac1d.data │ │ ├── format_asylum.data │ │ ├── format_chiptracker.data │ │ ├── format_coco.data │ │ ├── format_coco_patalign.data │ │ ├── format_crb.data │ │ ├── format_crb_2.data │ │ ├── format_dbm.data │ │ ├── format_dbm_penv.data │ │ ├── format_dbm_rows.data │ │ ├── format_dbm_venv.data │ │ ├── format_di.data │ │ ├── format_digi.data │ │ ├── format_dsmi.data │ │ ├── format_dsmi_08.data │ │ ├── format_dsmi_09.data │ │ ├── format_dsmi_10.data │ │ ├── format_dsmi_10_trunc.data │ │ ├── format_dsmi_note7f.amf │ │ ├── format_dsmi_note7f.data │ │ ├── format_dsmi_pan.amf │ │ ├── format_dsmi_pan.data │ │ ├── format_dsmi_track0.data │ │ ├── format_dsmi_vol.amf │ │ ├── format_dsmi_vol.data │ │ ├── format_dtm.data │ │ ├── format_emod.data │ │ ├── format_eureka.data │ │ ├── format_far.data │ │ ├── format_far_fx.data │ │ ├── format_fc_m.data │ │ ├── format_flt.data │ │ ├── format_flt8.data │ │ ├── format_fnk.data │ │ ├── format_fuchs.data │ │ ├── format_fuzzac.data │ │ ├── format_gdm.data │ │ ├── format_gdm_fx.data │ │ ├── format_gdm_fx2.data │ │ ├── format_gmc.data │ │ ├── format_hmn.data │ │ ├── format_hrt.data │ │ ├── format_ice.data │ │ ├── format_imf.data │ │ ├── format_ims.data │ │ ├── format_it.data │ │ ├── format_it_adpcm.data │ │ ├── format_it_invalid_fx.data │ │ ├── format_it_oldins.data │ │ ├── format_it_schism.data │ │ ├── format_it_schism.it │ │ ├── format_j2b.data │ │ ├── format_ksm.data │ │ ├── format_liq.data │ │ ├── format_liq_no.data │ │ ├── format_m15.data │ │ ├── format_m15_invalid.data │ │ ├── format_m15_invalid2.data │ │ ├── format_m15_short_rip.data │ │ ├── format_masi.data │ │ ├── format_mdl.data │ │ ├── format_mdl0.data │ │ ├── format_med2.data │ │ ├── format_med3.data │ │ ├── format_med4.data │ │ ├── format_med4_decvol.data │ │ ├── format_mfp.data │ │ ├── format_mgt.data │ │ ├── format_mmd0.data │ │ ├── format_mmd0_compattempo.data │ │ ├── format_mmd1_longpat.data │ │ ├── format_mmd3.data │ │ ├── format_mmd_iff3oct.data │ │ ├── format_mod_adpcm4.data │ │ ├── format_mod_dt.data │ │ ├── format_mod_invalid.data │ │ ├── format_mod_notawow.data │ │ ├── format_mod_noterange.data │ │ ├── format_mod_noterange2.data │ │ ├── format_mod_scrm.data │ │ ├── format_mod_tdz3.data │ │ ├── format_mp_noid.data │ │ ├── format_mtm.data │ │ ├── format_novotrade.data │ │ ├── format_np1.data │ │ ├── format_np2.data │ │ ├── format_np3.data │ │ ├── format_nru.data │ │ ├── format_nst.data │ │ ├── format_okt.data │ │ ├── format_p40a.data │ │ ├── format_p40b.data │ │ ├── format_p41a.data │ │ ├── format_p50a.data │ │ ├── format_p60.data │ │ ├── format_p61.data │ │ ├── format_pha.data │ │ ├── format_pha_short.data │ │ ├── format_pm10.data │ │ ├── format_pm18.data │ │ ├── format_pp10_1.data │ │ ├── format_pp10_2.data │ │ ├── format_pp10_3.data │ │ ├── format_pp10_4.data │ │ ├── format_pp21_1.data │ │ ├── format_pp21_2.data │ │ ├── format_pp30_1.data │ │ ├── format_pp30_2.data │ │ ├── format_pru1.data │ │ ├── format_pru2.data │ │ ├── format_psm.data │ │ ├── format_pt36.data │ │ ├── format_ptm.data │ │ ├── format_rad.data │ │ ├── format_rtm.data │ │ ├── format_s3m.data │ │ ├── format_s3m_adpcm.data │ │ ├── format_s3m_schism.data │ │ ├── format_s3m_schism.s3m │ │ ├── format_sfx.data │ │ ├── format_skyt.data │ │ ├── format_starpack.data │ │ ├── format_stim.data │ │ ├── format_stm.data │ │ ├── format_stm_blankpat.data │ │ ├── format_stm_v1.data │ │ ├── format_stx.data │ │ ├── format_sym.data │ │ ├── format_sym_lzwquirk.data │ │ ├── format_sym_sigmadelta.data │ │ ├── format_tdd.data │ │ ├── format_titanics.data │ │ ├── format_tp1.data │ │ ├── format_tp2.data │ │ ├── format_tp3.data │ │ ├── format_ult.data │ │ ├── format_unic.data │ │ ├── format_unic2.data │ │ ├── format_unic_id0.data │ │ ├── format_ust.data │ │ ├── format_wn.data │ │ ├── format_wow.data │ │ ├── format_wow_extra.data │ │ ├── format_xann.data │ │ ├── format_xm102.data │ │ ├── format_xm_adpcm.data │ │ ├── format_xm_instsamples.data │ │ ├── format_xm_short.data │ │ ├── format_xm_xmlite.data │ │ ├── gzipdata │ │ ├── hmn_extras.data │ │ ├── hold.med │ │ ├── interpolation_loop.data │ │ ├── interpolation_loop.it │ │ ├── invalid_fx.it │ │ ├── invloop.data │ │ ├── it-sample-16bit.raw │ │ ├── it-sample-8bit.raw │ │ ├── it_fade_env_reset.data │ │ ├── it_fade_env_reset.it │ │ ├── it_fade_env_reset_carry.data │ │ ├── it_fade_env_reset_carry.it │ │ ├── it_multi_retrigger.data │ │ ├── it_multi_retrigger.it │ │ ├── it_portamento_envelope_reset.data │ │ ├── it_portamento_envelope_reset.it │ │ ├── it_portamento_envelope_reset_cg.data │ │ ├── it_portamento_envelope_reset_cg.it │ │ ├── it_sample_porta.data │ │ ├── it_sample_porta.it │ │ ├── j2b_muse_data │ │ ├── jerry-boleti.oxm │ │ ├── l0_data │ │ ├── l0_lzhuff1 │ │ ├── l0_lzhuff5 │ │ ├── l1_data │ │ ├── l1_lzhuff5 │ │ ├── l1_lzhuff6 │ │ ├── l1_lzhuff7 │ │ ├── l2_data │ │ ├── l2_lzhuff7 │ │ ├── lowtheme.fuchs │ │ ├── lzxdata │ │ ├── m │ │ │ ├── 3d_foot.gdm │ │ │ ├── 4th_Symmetriad.it │ │ │ ├── APATHY.MOD │ │ │ ├── Alcatraz-Ilyad-2.hrt │ │ │ ├── Anarchy-GlamorousGennie62-menu.PhaPacker │ │ │ ├── Anarchy-GlamorousGenniePackPrev.PhaPacker │ │ │ ├── Anathema-NeSouthEast69-menu.ProPacker1 │ │ │ ├── Anathema-NeSouthEast79-menu.ProPacker1 │ │ │ ├── Anathema-NeSouthEast90-menu.ProPacker1 │ │ │ ├── Avoid.amf │ │ │ ├── CRB.Icicle_Beat │ │ │ ├── CRB.PartyTime │ │ │ ├── Crepequs.mod │ │ │ ├── DD.checknobankh │ │ │ ├── DarkDemon-SweetDreams.TDD │ │ │ ├── Delite-NeSouthEast51-menu.ProPacker1 │ │ │ ├── Diamond.j2b │ │ │ ├── Drifters-LatexIntro.skyt │ │ │ ├── Fight2.it │ │ │ ├── FullContactTitle.NoisePacker1 │ │ │ ├── FutureBrain.stx │ │ │ ├── Gidion_Graveland.mod │ │ │ ├── IMS.beast-busters1.st │ │ │ ├── InTheKitchen.mod │ │ │ ├── JUHO - Ihana paiva.xm │ │ │ ├── Jarre-Like.MED │ │ │ ├── KSM.dragonjive │ │ │ ├── Kefrens-GuardianDragon2-1.unic1 │ │ │ ├── LB2_7.GDM │ │ │ ├── MRHPx-HBTN LUCiFER.xm │ │ │ ├── Mexx-BitBlaster-1.TrackerPacker2 │ │ │ ├── Mexx-Paeckchen50-intro.TrackerPacker1 │ │ │ ├── Millenium2.Coconizer │ │ │ ├── NP2.Multica │ │ │ ├── NP3.krestmass │ │ │ ├── OKT.Yes-PartII │ │ │ ├── OSS.r-type │ │ │ ├── P40A.40KIntro │ │ │ ├── P40B.cipher │ │ │ ├── P41A.cloud busters │ │ │ ├── P50.experiment47 │ │ │ ├── P61.that's_pleasant │ │ │ ├── PM10.FlowerPower │ │ │ ├── PM18.Abnormalia2 │ │ │ ├── PRU1.crack the eggshell! │ │ │ ├── PRU2.Interference_1 │ │ │ ├── Paradox-Cobalt.fc-m │ │ │ ├── SFX.Crockett's_theme │ │ │ ├── STB-Cutcreations-1.ProPacker21.xz │ │ │ ├── STB-Cutcreations-2.ProPacker21.xz │ │ │ ├── STB-Eurochart15.ProPacker30.xz │ │ │ ├── STB-Eurochart17.ProPacker30.xz │ │ │ ├── STIM.intro_1 │ │ │ ├── Scrambled.Coconizer │ │ │ ├── Song.med │ │ │ ├── Synth-a-sysmic.med │ │ │ ├── TITANICS-TitanTrax-1 │ │ │ ├── Test6.amf │ │ │ ├── WOC92.NRU │ │ │ ├── WasteOfTime.liq │ │ │ ├── XANN.LethalExit │ │ │ ├── ZALZA - Tekilla groove.xm │ │ │ ├── ZONE-2A.mod │ │ │ ├── acidfunk.wow │ │ │ ├── alf.abk │ │ │ ├── alloyrun.rad │ │ │ ├── an_cmtec.amd │ │ │ ├── another life.it │ │ │ ├── astaris.imf │ │ │ ├── battleship.fnk │ │ │ ├── blue damage.mod │ │ │ ├── bonus.ft │ │ │ ├── book of memories.amd │ │ │ ├── breaking.mdl │ │ │ ├── call_me.dtm │ │ │ ├── cant.mod │ │ │ ├── cosmos st.amf │ │ │ ├── crystals.mod │ │ │ ├── cybocult.ult │ │ │ ├── di.nightmare │ │ │ ├── dontyou.xm │ │ │ ├── drwhofinl4.dsym │ │ │ ├── elysium.emod │ │ │ ├── ep-song1.psm │ │ │ ├── essai_18.mod │ │ │ ├── fairli.mod │ │ │ ├── fall1.mtm │ │ │ ├── fcslide1.sts │ │ │ ├── fracture.stm │ │ │ ├── funkowyhenrykibalbina.dbm │ │ │ ├── gmc.ingame │ │ │ ├── grass near the house.xm │ │ │ ├── gummis.dsym │ │ │ ├── inside_out.s3m │ │ │ ├── jimmy.stm │ │ │ ├── jupiter.gdm │ │ │ ├── lepeltheme.mod │ │ │ ├── lind.mod │ │ │ ├── little 01.dbm │ │ │ ├── lucid_dreams.WantonPacker │ │ │ ├── m07.amf │ │ │ ├── march of wonders.med │ │ │ ├── med2test.med │ │ │ ├── med2test_PanFlute │ │ │ ├── memories of anna.mmd1 │ │ │ ├── mfp.crystaldragon title │ │ │ ├── mm2flash.s3m │ │ │ ├── mod.LexstacyTheme │ │ │ ├── mod.OUR-ROUT.Travellers Tales │ │ │ ├── mod.getonthefloor.EurekaPacker │ │ │ ├── mod.matrix.ModuleProtectorNoID │ │ │ ├── mod.sad-song │ │ │ ├── mod.startide_rising.StartrekkerPacker │ │ │ ├── mod.tropical.FuzzacPacker │ │ │ ├── musicind.amf │ │ │ ├── new dimension.med │ │ │ ├── newdance.dsym │ │ │ ├── ntp.bgm1 │ │ │ ├── odyssey.rtm │ │ │ ├── order_of_death_ii.mod │ │ │ ├── oxygene2.mod │ │ │ ├── p60.asm94 │ │ │ ├── ponylips.mod │ │ │ ├── reborning.amf │ │ │ ├── reborning.mod │ │ │ ├── rew_vibr.ptm │ │ │ ├── silly venture.mgt │ │ │ ├── silver-song0.psm │ │ │ ├── sll7.mod │ │ │ ├── smp.crystaldragon title │ │ │ ├── sonic_boom.669 │ │ │ ├── sundance.mod │ │ │ ├── supersael.dbm │ │ │ ├── the new beginning.pt36 │ │ │ ├── the spring.mdl │ │ │ ├── the tribal zone.amf │ │ │ ├── the waiter.dbm │ │ │ ├── thunddrm.far │ │ │ ├── time after time.liq │ │ │ ├── titletheme.fuchs │ │ │ ├── tp3.desert.52k │ │ │ ├── transition.med │ │ │ ├── xyce-dans_la_rue.xm │ │ │ ├── yyde2.digi │ │ │ ├── zob-the-zob.mod │ │ │ └── zob-the-zob.mod.nt │ │ ├── med_hold.data │ │ ├── med_synth.data │ │ ├── med_synth_2.data │ │ ├── mixer_16bit_linear.data │ │ ├── mixer_16bit_linear_filter.data │ │ ├── mixer_16bit_nearest.data │ │ ├── mixer_16bit_spline.data │ │ ├── mixer_16bit_spline_filter.data │ │ ├── mixer_8bit_linear.data │ │ ├── mixer_8bit_linear_filter.data │ │ ├── mixer_8bit_nearest.data │ │ ├── mixer_8bit_spline.data │ │ ├── mixer_8bit_spline_filter.data │ │ ├── mod.loving_is_easy.pp │ │ ├── note_after_cut.data │ │ ├── note_after_cut.it │ │ ├── ode2ptk.mod │ │ ├── p │ │ │ ├── condom_corruption.mod │ │ │ ├── data_jack.s3m │ │ │ ├── killvictor.st26 │ │ │ ├── klisje_paa_klisje.mod │ │ │ ├── nebulos.mod │ │ │ ├── ode2ptk.mod │ │ │ └── roadblas.xm │ │ ├── pcm_buffer.raw │ │ ├── period_mdl.data │ │ ├── periods.data │ │ ├── ponylips.rar │ │ ├── porta.ult │ │ ├── porta_ult.data │ │ ├── portamento_after_cut_fade.data │ │ ├── portamento_after_cut_fade.it │ │ ├── portamento_after_cut_fade_cg.data │ │ ├── portamento_after_cut_fade_cg.it │ │ ├── portamento_after_keyoff.data │ │ ├── portamento_after_keyoff.it │ │ ├── portamento_after_keyoff_cg.data │ │ ├── portamento_after_keyoff_cg.it │ │ ├── s3m_sample_porta.data │ │ ├── s3m_sample_porta.s3m │ │ ├── sample-16bit.raw │ │ ├── sample-8bit.raw │ │ ├── sample-square-8bit.raw │ │ ├── sample4.raw │ │ ├── sample_sync.data │ │ ├── sample_sync.it │ │ ├── scan_240_seq.it │ │ ├── send.wav │ │ ├── set_position_mid_break.it │ │ ├── set_position_mid_jump.it │ │ ├── set_position_mid_loop.it │ │ ├── set_position_mid_pattdelay.it │ │ ├── set_position_mid_pattdelay.xm │ │ ├── small.gdm │ │ ├── spectrum.data │ │ ├── storlek_01.data │ │ ├── storlek_01.it │ │ ├── storlek_02.data │ │ ├── storlek_02.it │ │ ├── storlek_03.data │ │ ├── storlek_03.it │ │ ├── storlek_04.data │ │ ├── storlek_04.it │ │ ├── storlek_05.data │ │ ├── storlek_05.it │ │ ├── storlek_06.data │ │ ├── storlek_06.it │ │ ├── storlek_07.data │ │ ├── storlek_07.it │ │ ├── storlek_08.data │ │ ├── storlek_08.it │ │ ├── storlek_09.it │ │ ├── storlek_10.data │ │ ├── storlek_10.it │ │ ├── storlek_11.it │ │ ├── storlek_12.it │ │ ├── storlek_13.it │ │ ├── storlek_14.it │ │ ├── storlek_15.it │ │ ├── storlek_16.it │ │ ├── storlek_17.data │ │ ├── storlek_17.it │ │ ├── storlek_18.data │ │ ├── storlek_18.it │ │ ├── storlek_19.it │ │ ├── storlek_20.it │ │ ├── storlek_21.data │ │ ├── storlek_21.it │ │ ├── storlek_22.data │ │ ├── storlek_22.it │ │ ├── storlek_23.data │ │ ├── storlek_23.it │ │ ├── storlek_24.data │ │ ├── storlek_24.it │ │ ├── storlek_25.data │ │ ├── storlek_25.it │ │ ├── synth-a-.med.stc │ │ ├── test.it │ │ ├── test.mmcmp │ │ ├── test.xm │ │ ├── test_keyoff.data │ │ ├── test_keyoff.it │ │ ├── vcol_g.it │ │ ├── xm_portamento_envelope_reset.data │ │ ├── xm_portamento_envelope_reset.xm │ │ ├── xm_portamento_target.data │ │ ├── xm_portamento_target.xm │ │ ├── xzdata │ │ ├── zipdata1 │ │ ├── zipdata2 │ │ └── zipdata3 │ ├── gen_mixer_data.c │ ├── gen_mixer_data_loops.c │ ├── gen_module_data.c │ ├── gen_module_data.py │ ├── gen_replay_data.py │ ├── libxmp_fuzz.c │ ├── libxmp_fuzz.sh │ ├── main.c │ ├── openmpt │ │ ├── it │ │ │ ├── 00_README │ │ │ ├── Autovibrato-Reset.data │ │ │ ├── Autovibrato-Reset.it │ │ │ ├── Bidi-Loops.data │ │ │ ├── Bidi-Loops.it │ │ │ ├── CarryNNA.data │ │ │ ├── CarryNNA.it │ │ │ ├── EnvLoopEscape.data │ │ │ ├── EnvLoopEscape.it │ │ │ ├── EnvLoops.data │ │ │ ├── EnvLoops.it │ │ │ ├── EnvOffLength.data │ │ │ ├── EnvOffLength.it │ │ │ ├── EnvReset.data │ │ │ ├── EnvReset.it │ │ │ ├── Fade-Porta.data │ │ │ ├── Fade-Porta.it │ │ │ ├── FilterEnvReset.data │ │ │ ├── FilterEnvReset.it │ │ │ ├── FineVolColSlide.data │ │ │ ├── FineVolColSlide.it │ │ │ ├── GlobalVolume-Macro.it │ │ │ ├── InstrumentNumberChange.data │ │ │ ├── InstrumentNumberChange.it │ │ │ ├── LinearSlides.data │ │ │ ├── LinearSlides.it │ │ │ ├── MultiZxx.it │ │ │ ├── NoMap.data │ │ │ ├── NoMap.it │ │ │ ├── NoteOffInstr.data │ │ │ ├── NoteOffInstr.it │ │ │ ├── Off-Porta-CompatGxx.data │ │ │ ├── Off-Porta-CompatGxx.it │ │ │ ├── Off-Porta.data │ │ │ ├── Off-Porta.it │ │ │ ├── PanReset.data │ │ │ ├── PanReset.it │ │ │ ├── PatternDelay-NoteDelay.it │ │ │ ├── PatternDelays.it │ │ │ ├── PatternDelaysRetrig.it │ │ │ ├── PortaInsNum.data │ │ │ ├── PortaInsNum.it │ │ │ ├── PortaInsNumCompat.data │ │ │ ├── PortaInsNumCompat.it │ │ │ ├── PortaJustStoppedNote.data │ │ │ ├── PortaJustStoppedNote.it │ │ │ ├── PortaReset.data │ │ │ ├── PortaReset.it │ │ │ ├── PortaSample.data │ │ │ ├── PortaSample.it │ │ │ ├── PortaSampleCompat.data │ │ │ ├── PortaSampleCompat.it │ │ │ ├── RandomPan.it │ │ │ ├── RandomWaveform.it │ │ │ ├── SampleNumberChange.data │ │ │ ├── SampleNumberChange.it │ │ │ ├── SlideDelay.it │ │ │ ├── SmpInsPanSurround.data │ │ │ ├── SmpInsPanSurround.it │ │ │ ├── StoppedInstrSwap.data │ │ │ ├── StoppedInstrSwap.it │ │ │ ├── SusAfterLoop.it │ │ │ ├── VibratoDouble.it │ │ │ ├── VolColMemory.data │ │ │ ├── VolColMemory.it │ │ │ ├── Volume-Macro-Letters.it │ │ │ ├── cut-carry.data │ │ │ ├── cut-carry.it │ │ │ ├── emptyslot.data │ │ │ ├── emptyslot.it │ │ │ ├── env-flt-max.it │ │ │ ├── extreme-filter-test-1.data │ │ │ ├── extreme-filter-test-1.it │ │ │ ├── extreme-filter-test-2.it │ │ │ ├── filter-7F.data │ │ │ ├── filter-7F.it │ │ │ ├── filter-nna.data │ │ │ ├── filter-nna.it │ │ │ ├── filter-reset-carry.data │ │ │ ├── filter-reset-carry.it │ │ │ ├── filter-reset.data │ │ │ ├── filter-reset.it │ │ │ ├── flt-env-carry.data │ │ │ ├── flt-env-carry.it │ │ │ ├── fltmacro.it │ │ │ ├── freqreset-noins.data │ │ │ ├── freqreset-noins.it │ │ │ ├── globalvol-invalid.data │ │ │ ├── globalvol-invalid.it │ │ │ ├── gxsmp.data │ │ │ ├── gxsmp.it │ │ │ ├── gxsmp2.data │ │ │ ├── gxsmp2.it │ │ │ ├── gxxtest.data │ │ │ ├── gxxtest.it │ │ │ ├── ins-flt-porta-reset.data │ │ │ ├── ins-flt-porta-reset.it │ │ │ ├── macro-lastnote.it │ │ │ ├── noteoff2.data │ │ │ ├── noteoff2.it │ │ │ ├── noteoff3.data │ │ │ ├── noteoff3.it │ │ │ ├── porta-offset.data │ │ │ ├── porta-offset.it │ │ │ ├── retrig-short.data │ │ │ ├── retrig-short.it │ │ │ ├── retrig.data │ │ │ ├── retrig.it │ │ │ ├── s77.data │ │ │ ├── s77.it │ │ │ ├── s7xinsnum.data │ │ │ ├── s7xinsnum.it │ │ │ ├── scx.data │ │ │ ├── scx.it │ │ │ ├── surround-pan.it │ │ │ ├── swaptest.data │ │ │ ├── swaptest.it │ │ │ ├── swing1.it │ │ │ ├── swing2.it │ │ │ ├── swing3.it │ │ │ ├── swing4.it │ │ │ ├── swing5.it │ │ │ ├── tickdelay.it │ │ │ ├── tremolo.it │ │ │ ├── vibrato-oldfx.it │ │ │ ├── vibrato.it │ │ │ ├── vol-env-carry.data │ │ │ ├── vol-env-carry.it │ │ │ ├── weirdloop.it │ │ │ ├── wnoteoff.data │ │ │ └── wnoteoff.it │ │ ├── mod │ │ │ ├── 00_README │ │ │ ├── AmigaLimitsFinetune.data │ │ │ ├── AmigaLimitsFinetune.mod │ │ │ ├── ArpWraparound.data │ │ │ ├── ArpWraparound.mod │ │ │ ├── DelayBreak.data │ │ │ ├── DelayBreak.mod │ │ │ ├── InstrDelay.mod │ │ │ ├── PTInstrSwap.mod │ │ │ ├── PTSwapEmpty.mod │ │ │ ├── PatLoop-Break.mod │ │ │ ├── PatternJump.data │ │ │ ├── PatternJump.mod │ │ │ ├── PortaSmpChange.data │ │ │ ├── PortaSmpChange.mod │ │ │ ├── PortaTarget.data │ │ │ ├── PortaTarget.mod │ │ │ ├── VibratoReset.data │ │ │ ├── VibratoReset.mod │ │ │ ├── finetune.data │ │ │ ├── finetune.mod │ │ │ ├── ptoffset.data │ │ │ └── ptoffset.mod │ │ ├── s3m │ │ │ ├── 00_README │ │ │ ├── AmigaLimits.data │ │ │ ├── AmigaLimits.s3m │ │ │ ├── FreqLimits.data │ │ │ ├── FreqLimits.s3m │ │ │ ├── ParamMemory.data │ │ │ ├── ParamMemory.s3m │ │ │ ├── PatternDelays.s3m │ │ │ ├── PatternDelaysRetrig.data │ │ │ ├── PatternDelaysRetrig.s3m │ │ │ ├── PeriodLimit.data │ │ │ ├── PeriodLimit.s3m │ │ │ ├── PortaSmpChange.data │ │ │ ├── PortaSmpChange.s3m │ │ │ └── weirdloop.s3m │ │ └── xm │ │ │ ├── 00_README │ │ │ ├── 3xx-no-old-samp-noft.data │ │ │ ├── 3xx-no-old-samp-noft.xm │ │ │ ├── 3xx-no-old-samp.data │ │ │ ├── 3xx-no-old-samp.xm │ │ │ ├── 3xxins.data │ │ │ ├── 3xxins.xm │ │ │ ├── ArpSlide.data │ │ │ ├── ArpSlide.xm │ │ │ ├── Arpeggio.data │ │ │ ├── Arpeggio.xm │ │ │ ├── ArpeggioClamp.data │ │ │ ├── ArpeggioClamp.xm │ │ │ ├── DelayCombination.data │ │ │ ├── DelayCombination.xm │ │ │ ├── E90.data │ │ │ ├── E90.xm │ │ │ ├── EnvLoops.data │ │ │ ├── EnvLoops.xm │ │ │ ├── EnvOff.data │ │ │ ├── EnvOff.xm │ │ │ ├── FT2PanLaw.xm │ │ │ ├── FineVol-LinkMem.data │ │ │ ├── FineVol-LinkMem.xm │ │ │ ├── Finetune-Precision.xm │ │ │ ├── FreqWraparound.xm │ │ │ ├── Glissando.data │ │ │ ├── Glissando.xm │ │ │ ├── GlobalVolume.xm │ │ │ ├── KeyOff2.data │ │ │ ├── KeyOff2.xm │ │ │ ├── NoteLimit.data │ │ │ ├── NoteLimit.xm │ │ │ ├── NoteLimit2.data │ │ │ ├── NoteLimit2.xm │ │ │ ├── NoteOff.data │ │ │ ├── NoteOff.xm │ │ │ ├── NoteOff2.data │ │ │ ├── NoteOff2.xm │ │ │ ├── NoteOffFade.data │ │ │ ├── NoteOffFade.xm │ │ │ ├── NoteOffVolume.data │ │ │ ├── NoteOffVolume.xm │ │ │ ├── OffDelay.data │ │ │ ├── OffDelay.xm │ │ │ ├── OffsetRange.data │ │ │ ├── OffsetRange.xm │ │ │ ├── PanMemory.data │ │ │ ├── PanMemory.xm │ │ │ ├── PanMemory2.data │ │ │ ├── PanMemory2.xm │ │ │ ├── PanOff.data │ │ │ ├── PanOff.xm │ │ │ ├── PanSlideMem.data │ │ │ ├── PanSlideMem.xm │ │ │ ├── PanSlideZero.xm │ │ │ ├── PatLoop-Break.data │ │ │ ├── PatLoop-Break.xm │ │ │ ├── PatLoop-Infinite.xm │ │ │ ├── PatLoop-Jumps.xm │ │ │ ├── PatLoop-Nested.xm │ │ │ ├── PatLoop-Overflow.xm │ │ │ ├── PatLoop-Various.xm │ │ │ ├── PatLoop-Weird.data │ │ │ ├── PatLoop-Weird.xm │ │ │ ├── PatternDelays.data │ │ │ ├── PatternDelays.xm │ │ │ ├── PatternDelaysRetrig.data │ │ │ ├── PatternDelaysRetrig.xm │ │ │ ├── Pickup.data │ │ │ ├── Pickup.xm │ │ │ ├── Porta-LinkMem.data │ │ │ ├── Porta-LinkMem.xm │ │ │ ├── Porta-Pickup.data │ │ │ ├── Porta-Pickup.xm │ │ │ ├── PortaDelay.xm │ │ │ ├── RetrigTick0.xm │ │ │ ├── SampleChange.xm │ │ │ ├── SetEnvPos.data │ │ │ ├── SetEnvPos.xm │ │ │ ├── TonePortamentoMemory.data │ │ │ ├── TonePortamentoMemory.xm │ │ │ ├── TremoloWaveforms.data │ │ │ ├── TremoloWaveforms.xm │ │ │ ├── Tremor.data │ │ │ ├── Tremor.xm │ │ │ ├── TremorInstr.data │ │ │ ├── TremorInstr.xm │ │ │ ├── TremorRecover.data │ │ │ ├── TremorRecover.xm │ │ │ ├── VibratoCombinations.xm │ │ │ ├── VibratoWaveforms.data │ │ │ ├── VibratoWaveforms.xm │ │ │ ├── VolColDelay.xm │ │ │ ├── delay1.data │ │ │ ├── delay1.xm │ │ │ ├── delay2.data │ │ │ ├── delay2.xm │ │ │ ├── delay3.data │ │ │ ├── delay3.xm │ │ │ ├── delaycut.data │ │ │ ├── delaycut.xm │ │ │ ├── envretrig.data │ │ │ ├── envretrig.xm │ │ │ ├── finetune.data │ │ │ ├── finetune.xm │ │ │ ├── key_off.data │ │ │ ├── key_off.xm │ │ │ ├── keyoff+instr.data │ │ │ ├── keyoff+instr.xm │ │ │ ├── lowest.xm │ │ │ ├── pathead.data │ │ │ ├── pathead.xm │ │ │ ├── porta-delay.xm │ │ │ ├── porta-offset.data │ │ │ ├── porta-offset.xm │ │ │ └── retrig.xm │ ├── simple_module.c │ ├── test.h │ ├── test_api_channel_mute.c │ ├── test_api_channel_vol.c │ ├── test_api_create_context.c │ ├── test_api_create_module.c │ ├── test_api_free_context.c │ ├── test_api_get_format_list.c │ ├── test_api_inject_event.c │ ├── test_api_load_module.c │ ├── test_api_load_module_from_callbacks.c │ ├── test_api_load_module_from_file.c │ ├── test_api_load_module_from_memory.c │ ├── test_api_play_buffer.c │ ├── test_api_prev_position.c │ ├── test_api_restart_module.c │ ├── test_api_scan_module.c │ ├── test_api_seek_time.c │ ├── test_api_set_player.c │ ├── test_api_set_position.c │ ├── test_api_set_position_midfx.c │ ├── test_api_set_row.c │ ├── test_api_smix_channel_pan.c │ ├── test_api_smix_load_sample.c │ ├── test_api_smix_play_instrument.c │ ├── test_api_smix_play_sample.c │ ├── test_api_start_player.c │ ├── test_api_stop_module.c │ ├── test_api_test_module.c │ ├── test_api_test_module_from_callbacks.c │ ├── test_api_test_module_from_file.c │ ├── test_api_test_module_from_memory.c │ ├── test_depack_arc_method2.c │ ├── test_depack_arc_method8.c │ ├── test_depack_arcfs.c │ ├── test_depack_bzip2.c │ ├── test_depack_compress.c │ ├── test_depack_gzip.c │ ├── test_depack_it_sample_16bit.c │ ├── test_depack_it_sample_8bit.c │ ├── test_depack_j2b.c │ ├── test_depack_lha_l0_filtered.c │ ├── test_depack_lha_l0_lzhuff1.c │ ├── test_depack_lha_l0_lzhuff5.c │ ├── test_depack_lha_l1_filtered.c │ ├── test_depack_lha_l1_lzhuff5.c │ ├── test_depack_lha_l1_lzhuff6.c │ ├── test_depack_lha_l1_lzhuff7.c │ ├── test_depack_lha_l2_filtered.c │ ├── test_depack_lha_l2_lzhuff7.c │ ├── test_depack_lzx.c │ ├── test_depack_mmcmp.c │ ├── test_depack_pp.c │ ├── test_depack_rar.c │ ├── test_depack_s404.c │ ├── test_depack_spark.c │ ├── test_depack_sqsh.c │ ├── test_depack_vorbis.c │ ├── test_depack_vorbis_8bit.c │ ├── test_depack_xz.c │ ├── test_depack_zip.c │ ├── test_depack_zip_filtered.c │ ├── test_depack_zip_store.c │ ├── test_depack_zoo.c │ ├── test_effect_0_arpeggio.c │ ├── test_effect_1_slide_up.c │ ├── test_effect_2_slide_down.c │ ├── test_effect_4_vibrato.c │ ├── test_effect_8_setpan.c │ ├── test_effect_a_volslide.c │ ├── test_effect_c_volset.c │ ├── test_effect_e9_retrig.c │ ├── test_effect_ed_delay.c │ ├── test_effect_ef_invert_loop.c │ ├── test_effect_f_set_speed.c │ ├── test_effect_far_noteoffset.c │ ├── test_effect_far_retrig.c │ ├── test_effect_far_slide.c │ ├── test_effect_far_tempo.c │ ├── test_effect_far_toneporta.c │ ├── test_effect_far_vibrato.c │ ├── test_effect_far_vibrato_per.c │ ├── test_effect_far_volslide.c │ ├── test_effect_fine_vibrato.c │ ├── test_effect_globalvol.c │ ├── test_effect_gvol_slide.c │ ├── test_effect_it_bpm.c │ ├── test_effect_it_break_to_row.c │ ├── test_effect_it_fine_vol_row_delay.c │ ├── test_effect_it_g00_nosuck.c │ ├── test_effect_it_l00_nosuck.c │ ├── test_effect_it_multi_retrig.c │ ├── test_effect_it_panslide.c │ ├── test_effect_it_vcol_g.c │ ├── test_effect_note_slide.c │ ├── test_effect_note_slide_retrig.c │ ├── test_effect_okt_arpeggio.c │ ├── test_effect_panbrello.c │ ├── test_effect_pastnote_cut.c │ ├── test_effect_pastnote_fade.c │ ├── test_effect_pastnote_off.c │ ├── test_effect_per_slide.c │ ├── test_effect_per_toneporta.c │ ├── test_effect_persistent_slide.c │ ├── test_effect_persistent_vibrato.c │ ├── test_effect_persistent_vslide.c │ ├── test_effect_s3m_bpm.c │ ├── test_effect_set_nna_cont.c │ ├── test_effect_set_nna_cut.c │ ├── test_effect_set_nna_fade.c │ ├── test_effect_set_nna_off.c │ ├── test_effect_track_volslide.c │ ├── test_effect_ult_toneporta.c │ ├── test_effect_volslide.c │ ├── test_fuzzer_669_truncated.c │ ├── test_fuzzer_abk_0_instruments.c │ ├── test_fuzzer_abk_test_title.c │ ├── test_fuzzer_abk_truncated.c │ ├── test_fuzzer_amf_truncated.c │ ├── test_fuzzer_amf_truncated2.c │ ├── test_fuzzer_arch_invalid_patterns.c │ ├── test_fuzzer_asy_invalid_samples.c │ ├── test_fuzzer_chip_truncated.c │ ├── test_fuzzer_coco_invalid_sequence.c │ ├── test_fuzzer_dbm_chunk_order.c │ ├── test_fuzzer_dbm_invalid_instruments.c │ ├── test_fuzzer_dbm_name_buffer_overflow.c │ ├── test_fuzzer_dbm_sample_count.c │ ├── test_fuzzer_dbm_truncated.c │ ├── test_fuzzer_dbm_truncated_inst.c │ ├── test_fuzzer_depack_arc_large_output.c │ ├── test_fuzzer_depack_arc_lzw_invalid.c │ ├── test_fuzzer_depack_arc_slow_rle.c │ ├── test_fuzzer_depack_arcfs_invalid_bits.c │ ├── test_fuzzer_depack_arcfs_lzw_leak.c │ ├── test_fuzzer_depack_arcfs_negative_header_size.c │ ├── test_fuzzer_depack_arcfs_negative_size.c │ ├── test_fuzzer_depack_arcfs_no_files.c │ ├── test_fuzzer_depack_arcfs_zero_length.c │ ├── test_fuzzer_depack_bz2_invalid_selector.c │ ├── test_fuzzer_depack_compress_invalid_maxbits.c │ ├── test_fuzzer_depack_gzip_invalid_name.c │ ├── test_fuzzer_depack_gzip_truncated.c │ ├── test_fuzzer_depack_lha_invalid_clen.c │ ├── test_fuzzer_depack_lha_invalid_tree.c │ ├── test_fuzzer_depack_lha_truncated.c │ ├── test_fuzzer_depack_lzx_invalid.c │ ├── test_fuzzer_depack_muse_truncated.c │ ├── test_fuzzer_depack_muse_truncated2.c │ ├── test_fuzzer_depack_oxm_invalid.c │ ├── test_fuzzer_depack_oxm_pcm_leak.c │ ├── test_fuzzer_depack_oxm_truncated.c │ ├── test_fuzzer_depack_pp20_invalid.c │ ├── test_fuzzer_depack_s404_invalid_length.c │ ├── test_fuzzer_depack_s404_invalid_shift.c │ ├── test_fuzzer_depack_sqsh_invalid_verbatim.c │ ├── test_fuzzer_depack_sqsh_misaligned.c │ ├── test_fuzzer_depack_sqsh_no_checksum.c │ ├── test_fuzzer_depack_sqsh_truncated.c │ ├── test_fuzzer_depack_sqsh_truncated2.c │ ├── test_fuzzer_depack_zip_truncated.c │ ├── test_fuzzer_depack_zip_truncated2.c │ ├── test_fuzzer_depack_zip_truncated3.c │ ├── test_fuzzer_depack_zip_truncated4.c │ ├── test_fuzzer_digi_truncated.c │ ├── test_fuzzer_dt_channels_bound.c │ ├── test_fuzzer_dt_duplicate_chunk.c │ ├── test_fuzzer_dt_instrument_count.c │ ├── test_fuzzer_dt_invalid_loop.c │ ├── test_fuzzer_dt_truncated.c │ ├── test_fuzzer_emod_duplicate_chunk.c │ ├── test_fuzzer_far_truncated.c │ ├── test_fuzzer_flt_umr.c │ ├── test_fuzzer_fnk_channels_bound.c │ ├── test_fuzzer_fnk_invalid_sample_size.c │ ├── test_fuzzer_fnk_patterns_bound.c │ ├── test_fuzzer_fnk_truncated.c │ ├── test_fuzzer_gal4_duplicate_instrument.c │ ├── test_fuzzer_gal4_env_point_bound.c │ ├── test_fuzzer_gal4_invalid_sample_num.c │ ├── test_fuzzer_gal4_truncated.c │ ├── test_fuzzer_gal5_channels_bound.c │ ├── test_fuzzer_gal5_duplicate_instrument.c │ ├── test_fuzzer_gal5_invalid_sample_num.c │ ├── test_fuzzer_gal5_truncated.c │ ├── test_fuzzer_gal5_truncated_info.c │ ├── test_fuzzer_gdm_invalid_sample_size.c │ ├── test_fuzzer_gdm_samples_bound.c │ ├── test_fuzzer_gdm_truncated.c │ ├── test_fuzzer_gdm_truncated_header.c │ ├── test_fuzzer_hmn_truncated.c │ ├── test_fuzzer_ice_truncated.c │ ├── test_fuzzer_imf_truncated.c │ ├── test_fuzzer_ims_scan_loop.c │ ├── test_fuzzer_ims_truncated_magic.c │ ├── test_fuzzer_it_dca_3.c │ ├── test_fuzzer_it_invalid_compressed.c │ ├── test_fuzzer_it_long_patterns.c │ ├── test_fuzzer_it_truncated_header.c │ ├── test_fuzzer_it_truncated_pattern.c │ ├── test_fuzzer_liq_no_valid_orders.c │ ├── test_fuzzer_liq_truncated.c │ ├── test_fuzzer_masi_invalid_length.c │ ├── test_fuzzer_masi_seek_loop.c │ ├── test_fuzzer_masi_truncated.c │ ├── test_fuzzer_mdl_duplicate_chunk.c │ ├── test_fuzzer_mdl_duplicate_is_chunk.c │ ├── test_fuzzer_mdl_duplicate_pa_chunk.c │ ├── test_fuzzer_mdl_duplicate_sa_chunk.c │ ├── test_fuzzer_mdl_ii_after_is.c │ ├── test_fuzzer_mdl_invalid_chunk_order.c │ ├── test_fuzzer_mdl_invalid_run.c │ ├── test_fuzzer_mdl_invalid_sample.c │ ├── test_fuzzer_mdl_truncated.c │ ├── test_fuzzer_mdl_umr.c │ ├── test_fuzzer_med2_truncated.c │ ├── test_fuzzer_med3_invalid_pattern.c │ ├── test_fuzzer_med4_instrument_name.c │ ├── test_fuzzer_med4_invalid_iff.c │ ├── test_fuzzer_med4_invalid_sample.c │ ├── test_fuzzer_mfp_truncated.c │ ├── test_fuzzer_mgt_patterns_bound.c │ ├── test_fuzzer_misc.c │ ├── test_fuzzer_mmd0_sample_count.c │ ├── test_fuzzer_mmd1_channel_count.c │ ├── test_fuzzer_mmd1_invalid.c │ ├── test_fuzzer_mmd3_invalid.c │ ├── test_fuzzer_mmd3_invalid_mmdinfo.c │ ├── test_fuzzer_mmd3_invalid_sample_size.c │ ├── test_fuzzer_mod_no_null_terminator.c │ ├── test_fuzzer_mod_no_valid_orders.c │ ├── test_fuzzer_mod_scan_row_limit.c │ ├── test_fuzzer_mtm_channels_bound.c │ ├── test_fuzzer_okt_duplicate_chunk.c │ ├── test_fuzzer_okt_invalid_chunk_order.c │ ├── test_fuzzer_okt_sbod_leak.c │ ├── test_fuzzer_play_669_low_freq.c │ ├── test_fuzzer_play_asylum_bad_effects.c │ ├── test_fuzzer_play_dbm_inst_no_samples.c │ ├── test_fuzzer_play_far_highbpm.c │ ├── test_fuzzer_play_gdm_bad_loop.c │ ├── test_fuzzer_play_hmn_bad_megaarp.c │ ├── test_fuzzer_play_it_bad_env_sustain.c │ ├── test_fuzzer_play_it_bad_set_nna.c │ ├── test_fuzzer_play_it_row_0_loop_row_delay.c │ ├── test_fuzzer_play_it_sustain_bidi.c │ ├── test_fuzzer_play_mdl_zero_samples.c │ ├── test_fuzzer_play_med4_0_chn_invalid_ord.c │ ├── test_fuzzer_play_mmd1_synth_bad_tables.c │ ├── test_fuzzer_play_mod_bad_invloop.c │ ├── test_fuzzer_play_stm_bad_note_toneporta.c │ ├── test_fuzzer_play_xm_bad_env_sustain.c │ ├── test_fuzzer_play_xm_bad_instrument.c │ ├── test_fuzzer_prowizard_ac1d_invalid_note.c │ ├── test_fuzzer_prowizard_ac1d_invalid_paddr.c │ ├── test_fuzzer_prowizard_di_invalid_offsets.c │ ├── test_fuzzer_prowizard_di_patterns_bound.c │ ├── test_fuzzer_prowizard_di_patterns_test.c │ ├── test_fuzzer_prowizard_di_truncated.c │ ├── test_fuzzer_prowizard_eureka_truncated.c │ ├── test_fuzzer_prowizard_fuchs_pattern_length.c │ ├── test_fuzzer_prowizard_heatseek_truncated.c │ ├── test_fuzzer_prowizard_ksm_invalid_pattern.c │ ├── test_fuzzer_prowizard_noiserun_invalid_sample.c │ ├── test_fuzzer_prowizard_noiserun_truncated.c │ ├── test_fuzzer_prowizard_novotrade_invalid_order.c │ ├── test_fuzzer_prowizard_novotrade_orders_bound.c │ ├── test_fuzzer_prowizard_novotrade_patterns_bound.c │ ├── test_fuzzer_prowizard_np2_patterns_bound.c │ ├── test_fuzzer_prowizard_np3_invalid_note.c │ ├── test_fuzzer_prowizard_np3_patterns_bound.c │ ├── test_fuzzer_prowizard_p40_invalid_offsets.c │ ├── test_fuzzer_prowizard_p40_invalid_packing.c │ ├── test_fuzzer_prowizard_p40_invalid_sample.c │ ├── test_fuzzer_prowizard_p40_zero_length.c │ ├── test_fuzzer_prowizard_p61a_invalid_note.c │ ├── test_fuzzer_prowizard_p61a_invalid_sample_dup.c │ ├── test_fuzzer_prowizard_p61a_truncated.c │ ├── test_fuzzer_prowizard_pha_invalid_note.c │ ├── test_fuzzer_prowizard_pha_invalid_offset.c │ ├── test_fuzzer_prowizard_pha_invalid_paddr.c │ ├── test_fuzzer_prowizard_pha_patterns_bound.c │ ├── test_fuzzer_prowizard_pha_truncated.c │ ├── test_fuzzer_prowizard_pm10c_invalid_note.c │ ├── test_fuzzer_prowizard_pm10c_invalid_pattern.c │ ├── test_fuzzer_prowizard_pm10c_invalid_psize.c │ ├── test_fuzzer_prowizard_pm10c_zero_length.c │ ├── test_fuzzer_prowizard_pm18a_invalid_note.c │ ├── test_fuzzer_prowizard_pm18a_invalid_paddr.c │ ├── test_fuzzer_prowizard_pm18a_zero_length.c │ ├── test_fuzzer_prowizard_pp10_invalid_pattern.c │ ├── test_fuzzer_prowizard_pp21_truncated.c │ ├── test_fuzzer_prowizard_pp30_invalid.c │ ├── test_fuzzer_prowizard_starpack_junk_orders.c │ ├── test_fuzzer_prowizard_theplayer_invalid_note.c │ ├── test_fuzzer_prowizard_theplayer_invalid_sample_dup.c │ ├── test_fuzzer_prowizard_titanics_truncated.c │ ├── test_fuzzer_prowizard_tp1_invalid_length.c │ ├── test_fuzzer_prowizard_tp1_invalid_paddr.c │ ├── test_fuzzer_prowizard_tp3_patterns_bound.c │ ├── test_fuzzer_prowizard_tp3_samples_bound.c │ ├── test_fuzzer_prowizard_unic_truncated.c │ ├── test_fuzzer_prowizard_xann_invalid.c │ ├── test_fuzzer_prowizard_zen_invalid_note.c │ ├── test_fuzzer_psm_samples_bound.c │ ├── test_fuzzer_pt3_ptdt_leak.c │ ├── test_fuzzer_pt3_truncated.c │ ├── test_fuzzer_ptm_truncated.c │ ├── test_fuzzer_rtm_truncated.c │ ├── test_fuzzer_rtm_zero_samples.c │ ├── test_fuzzer_s3m_invalid_sample_size.c │ ├── test_fuzzer_s3m_invalid_sample_size2.c │ ├── test_fuzzer_sfx_truncated.c │ ├── test_fuzzer_st_invalid_sample_count.c │ ├── test_fuzzer_st_truncated.c │ ├── test_fuzzer_stim_truncated.c │ ├── test_fuzzer_stm_patterns_bound.c │ ├── test_fuzzer_stx_instruments_bound.c │ ├── test_fuzzer_stx_truncated.c │ ├── test_fuzzer_sym_bad_sigmadelta.c │ ├── test_fuzzer_sym_truncated.c │ ├── test_fuzzer_sym_truncated_lzw.c │ ├── test_fuzzer_ult_channels_bound.c │ ├── test_fuzzer_ult_invalid_sample.c │ ├── test_fuzzer_ult_invalid_tracks.c │ ├── test_fuzzer_ult_truncated.c │ ├── test_fuzzer_ult_v000.c │ ├── test_fuzzer_umx_invalid_names.c │ ├── test_fuzzer_xm_negative_instsize.c │ ├── test_fuzzer_xm_orders_mismatch.c │ ├── test_fuzzer_xm_vorbis_crash.c │ ├── test_fuzzer_xm_vorbis_leak.c │ ├── test_fuzzer_xm_zero_samples.c │ ├── test_loader_669.c │ ├── test_loader_6chn.c │ ├── test_loader_abk.c │ ├── test_loader_ac1d.c │ ├── test_loader_asylum.c │ ├── test_loader_chiptracker.c │ ├── test_loader_coco.c │ ├── test_loader_coco_patalign.c │ ├── test_loader_crb.c │ ├── test_loader_crb2.c │ ├── test_loader_dbm.c │ ├── test_loader_dbm_penv.c │ ├── test_loader_dbm_rows.c │ ├── test_loader_dbm_venv.c │ ├── test_loader_di.c │ ├── test_loader_digi.c │ ├── test_loader_dsmi.c │ ├── test_loader_dsmi_08.c │ ├── test_loader_dsmi_09.c │ ├── test_loader_dsmi_10.c │ ├── test_loader_dsmi_10_trunc.c │ ├── test_loader_dsmi_note7f.c │ ├── test_loader_dsmi_pan.c │ ├── test_loader_dsmi_track0.c │ ├── test_loader_dsmi_vol.c │ ├── test_loader_dtm.c │ ├── test_loader_emod.c │ ├── test_loader_eureka.c │ ├── test_loader_far.c │ ├── test_loader_far_fx.c │ ├── test_loader_fc_m.c │ ├── test_loader_flt.c │ ├── test_loader_flt8.c │ ├── test_loader_fnk.c │ ├── test_loader_fuchs.c │ ├── test_loader_fuzzac.c │ ├── test_loader_gdm.c │ ├── test_loader_gdm_fx.c │ ├── test_loader_gdm_fx2.c │ ├── test_loader_gmc.c │ ├── test_loader_hmn.c │ ├── test_loader_hrt.c │ ├── test_loader_ice.c │ ├── test_loader_imf.c │ ├── test_loader_ims.c │ ├── test_loader_it.c │ ├── test_loader_it_adpcm.c │ ├── test_loader_it_invalid_fx.c │ ├── test_loader_it_oldins.c │ ├── test_loader_it_schism.c │ ├── test_loader_j2b.c │ ├── test_loader_ksm.c │ ├── test_loader_liq.c │ ├── test_loader_liq_no.c │ ├── test_loader_m15.c │ ├── test_loader_m15_invalid.c │ ├── test_loader_m15_invalid2.c │ ├── test_loader_m15_short_rip.c │ ├── test_loader_masi.c │ ├── test_loader_mdl.c │ ├── test_loader_mdl0.c │ ├── test_loader_med2.c │ ├── test_loader_med3.c │ ├── test_loader_med4.c │ ├── test_loader_med4_decvol.c │ ├── test_loader_mfp.c │ ├── test_loader_mgt.c │ ├── test_loader_mmd0.c │ ├── test_loader_mmd0_compattempo.c │ ├── test_loader_mmd1_longpat.c │ ├── test_loader_mmd3.c │ ├── test_loader_mmd_iff3oct.c │ ├── test_loader_mod_adpcm4.c │ ├── test_loader_mod_dt.c │ ├── test_loader_mod_invalid.c │ ├── test_loader_mod_notawow.c │ ├── test_loader_mod_noterange.c │ ├── test_loader_mod_noterange2.c │ ├── test_loader_mod_scrm.c │ ├── test_loader_mod_tdz3.c │ ├── test_loader_mp_noid.c │ ├── test_loader_mtm.c │ ├── test_loader_novotrade.c │ ├── test_loader_np1.c │ ├── test_loader_np2.c │ ├── test_loader_np3.c │ ├── test_loader_nru.c │ ├── test_loader_nst.c │ ├── test_loader_okt.c │ ├── test_loader_p40a.c │ ├── test_loader_p40b.c │ ├── test_loader_p41a.c │ ├── test_loader_p50a.c │ ├── test_loader_p60.c │ ├── test_loader_p61.c │ ├── test_loader_pha.c │ ├── test_loader_pha_short.c │ ├── test_loader_pm10.c │ ├── test_loader_pm18.c │ ├── test_loader_pp10_1.c │ ├── test_loader_pp10_2.c │ ├── test_loader_pp10_3.c │ ├── test_loader_pp10_4.c │ ├── test_loader_pp21_1.c │ ├── test_loader_pp21_2.c │ ├── test_loader_pp30_1.c │ ├── test_loader_pp30_2.c │ ├── test_loader_pru1.c │ ├── test_loader_pru2.c │ ├── test_loader_psm.c │ ├── test_loader_pt36.c │ ├── test_loader_ptm.c │ ├── test_loader_rad.c │ ├── test_loader_rtm.c │ ├── test_loader_s3m.c │ ├── test_loader_s3m_adpcm.c │ ├── test_loader_s3m_schism.c │ ├── test_loader_sfx.c │ ├── test_loader_skyt.c │ ├── test_loader_starpack.c │ ├── test_loader_stim.c │ ├── test_loader_stm.c │ ├── test_loader_stm_blankpat.c │ ├── test_loader_stm_v1.c │ ├── test_loader_stx.c │ ├── test_loader_sym.c │ ├── test_loader_sym_lzwquirk.c │ ├── test_loader_sym_sigmadelta.c │ ├── test_loader_tdd.c │ ├── test_loader_titanics.c │ ├── test_loader_tp1.c │ ├── test_loader_tp2.c │ ├── test_loader_tp3.c │ ├── test_loader_ult.c │ ├── test_loader_unic.c │ ├── test_loader_unic2.c │ ├── test_loader_unic_id0.c │ ├── test_loader_ust.c │ ├── test_loader_wn.c │ ├── test_loader_wow.c │ ├── test_loader_wow_extra.c │ ├── test_loader_xann.c │ ├── test_loader_xm102.c │ ├── test_loader_xm_adpcm.c │ ├── test_loader_xm_instsamples.c │ ├── test_loader_xm_short.c │ ├── test_loader_xm_xmlite.c │ ├── test_mixer_bidi_sync.c │ ├── test_mixer_downmix_16bit.c │ ├── test_mixer_downmix_8bit.c │ ├── test_mixer_interpolation_default.c │ ├── test_mixer_interpolation_loop.c │ ├── test_mixer_mono_16bit_linear.c │ ├── test_mixer_mono_16bit_linear_filter.c │ ├── test_mixer_mono_16bit_nearest.c │ ├── test_mixer_mono_16bit_spline.c │ ├── test_mixer_mono_16bit_spline_filter.c │ ├── test_mixer_mono_8bit_linear.c │ ├── test_mixer_mono_8bit_linear_filter.c │ ├── test_mixer_mono_8bit_nearest.c │ ├── test_mixer_mono_8bit_spline.c │ ├── test_mixer_mono_8bit_spline_filter.c │ ├── test_mixer_stereo_16bit_linear.c │ ├── test_mixer_stereo_16bit_linear_filter.c │ ├── test_mixer_stereo_16bit_nearest.c │ ├── test_mixer_stereo_16bit_spline.c │ ├── test_mixer_stereo_16bit_spline_filter.c │ ├── test_mixer_stereo_8bit_linear.c │ ├── test_mixer_stereo_8bit_linear_filter.c │ ├── test_mixer_stereo_8bit_nearest.c │ ├── test_mixer_stereo_8bit_spline.c │ ├── test_mixer_stereo_8bit_spline_filter.c │ ├── test_module_length_condom_corruption.c │ ├── test_module_length_data_jack.c │ ├── test_module_length_killvictor.c │ ├── test_module_length_klisje_paa_klisje.c │ ├── test_module_length_nebulos.c │ ├── test_module_length_ode2ptk.c │ ├── test_module_length_roadblast.c │ ├── test_new_note_invalid_ins_ft2.c │ ├── test_new_note_invalid_ins_it.c │ ├── test_new_note_invalid_ins_mod.c │ ├── test_new_note_invalid_ins_st3.c │ ├── test_new_note_no_ins_ft2.c │ ├── test_new_note_no_ins_it.c │ ├── test_new_note_no_ins_mod.c │ ├── test_new_note_no_ins_st3.c │ ├── test_new_note_same_ins_ft2.c │ ├── test_new_note_same_ins_it.c │ ├── test_new_note_same_ins_mod.c │ ├── test_new_note_same_ins_st3.c │ ├── test_new_note_valid_ins_ft2.c │ ├── test_new_note_valid_ins_it.c │ ├── test_new_note_valid_ins_mod.c │ ├── test_new_note_valid_ins_st3.c │ ├── test_next_order_skip.c │ ├── test_no_note_invalid_ins_ft2.c │ ├── test_no_note_invalid_ins_it.c │ ├── test_no_note_invalid_ins_mod.c │ ├── test_no_note_invalid_ins_st3.c │ ├── test_no_note_same_ins_ft2.c │ ├── test_no_note_same_ins_it.c │ ├── test_no_note_same_ins_mod.c │ ├── test_no_note_same_ins_st3.c │ ├── test_no_note_valid_ins_ft2.c │ ├── test_no_note_valid_ins_it.c │ ├── test_no_note_valid_ins_mod.c │ ├── test_no_note_valid_ins_st3.c │ ├── test_openmpt_it_autovibrato_reset.c │ ├── test_openmpt_it_bidi_loops.c │ ├── test_openmpt_it_carrynna.c │ ├── test_openmpt_it_cut_carry.c │ ├── test_openmpt_it_emptyslot.c │ ├── test_openmpt_it_envloopescape.c │ ├── test_openmpt_it_envloops.c │ ├── test_openmpt_it_envofflength.c │ ├── test_openmpt_it_envreset.c │ ├── test_openmpt_it_extreme_filter_test_1.c │ ├── test_openmpt_it_fade_porta.c │ ├── test_openmpt_it_filter_7f.c │ ├── test_openmpt_it_filter_nna.c │ ├── test_openmpt_it_filter_reset.c │ ├── test_openmpt_it_filter_reset_carry.c │ ├── test_openmpt_it_filterenvreset.c │ ├── test_openmpt_it_finevolcolslide.c │ ├── test_openmpt_it_flt_env_carry.c │ ├── test_openmpt_it_freqreset_noins.c │ ├── test_openmpt_it_globalvol_invalid.c │ ├── test_openmpt_it_gxsmp.c │ ├── test_openmpt_it_gxsmp2.c │ ├── test_openmpt_it_gxxtest.c │ ├── test_openmpt_it_ins_flt_porta_reset.c │ ├── test_openmpt_it_instrumentnumberchange.c │ ├── test_openmpt_it_linearslides.c │ ├── test_openmpt_it_nomap.c │ ├── test_openmpt_it_noteoff2.c │ ├── test_openmpt_it_noteoff3.c │ ├── test_openmpt_it_noteoffinstr.c │ ├── test_openmpt_it_off_porta.c │ ├── test_openmpt_it_off_porta_compatgxx.c │ ├── test_openmpt_it_panreset.c │ ├── test_openmpt_it_porta_offset.c │ ├── test_openmpt_it_portainsnum.c │ ├── test_openmpt_it_portainsnumcompat.c │ ├── test_openmpt_it_portajuststoppednote.c │ ├── test_openmpt_it_portareset.c │ ├── test_openmpt_it_portasample.c │ ├── test_openmpt_it_portasamplecompat.c │ ├── test_openmpt_it_randompan.c │ ├── test_openmpt_it_retrig.c │ ├── test_openmpt_it_retrig_short.c │ ├── test_openmpt_it_s77.c │ ├── test_openmpt_it_s7xinsnum.c │ ├── test_openmpt_it_samplenumberchange.c │ ├── test_openmpt_it_scx.c │ ├── test_openmpt_it_smpinspansurround.c │ ├── test_openmpt_it_stoppedinstrswap.c │ ├── test_openmpt_it_swaptest.c │ ├── test_openmpt_it_swing1.c │ ├── test_openmpt_it_swing2.c │ ├── test_openmpt_it_swing3.c │ ├── test_openmpt_it_vol_env_carry.c │ ├── test_openmpt_it_volcolmemory.c │ ├── test_openmpt_it_wnoteoff.c │ ├── test_openmpt_mod_amigalimitsfinetune.c │ ├── test_openmpt_mod_arpwraparound.c │ ├── test_openmpt_mod_delaybreak.c │ ├── test_openmpt_mod_finetune.c │ ├── test_openmpt_mod_patternjump.c │ ├── test_openmpt_mod_portasmpchange.c │ ├── test_openmpt_mod_portatarget.c │ ├── test_openmpt_mod_ptoffset.c │ ├── test_openmpt_mod_vibratoreset.c │ ├── test_openmpt_s3m_amigalimits.c │ ├── test_openmpt_s3m_freqlimits.c │ ├── test_openmpt_s3m_parammemory.c │ ├── test_openmpt_s3m_patterndelaysretrig.c │ ├── test_openmpt_s3m_periodlimit.c │ ├── test_openmpt_s3m_portasmpchange.c │ ├── test_openmpt_xm_3xx_no_old_samp.c │ ├── test_openmpt_xm_3xx_no_old_samp_noft.c │ ├── test_openmpt_xm_3xxins.c │ ├── test_openmpt_xm_arpeggio.c │ ├── test_openmpt_xm_arpeggioclamp.c │ ├── test_openmpt_xm_arpslide.c │ ├── test_openmpt_xm_delay1.c │ ├── test_openmpt_xm_delay2.c │ ├── test_openmpt_xm_delay3.c │ ├── test_openmpt_xm_delaycombination.c │ ├── test_openmpt_xm_delaycut.c │ ├── test_openmpt_xm_e90.c │ ├── test_openmpt_xm_envloops.c │ ├── test_openmpt_xm_envoff.c │ ├── test_openmpt_xm_envretrig.c │ ├── test_openmpt_xm_finetune.c │ ├── test_openmpt_xm_finevol_linkmem.c │ ├── test_openmpt_xm_glissando.c │ ├── test_openmpt_xm_key_off.c │ ├── test_openmpt_xm_keyoff2.c │ ├── test_openmpt_xm_keyoff_instr.c │ ├── test_openmpt_xm_notelimit.c │ ├── test_openmpt_xm_notelimit2.c │ ├── test_openmpt_xm_noteoff.c │ ├── test_openmpt_xm_noteoff2.c │ ├── test_openmpt_xm_noteofffade.c │ ├── test_openmpt_xm_noteoffvolume.c │ ├── test_openmpt_xm_offdelay.c │ ├── test_openmpt_xm_offsetrange.c │ ├── test_openmpt_xm_panmemory.c │ ├── test_openmpt_xm_panmemory2.c │ ├── test_openmpt_xm_panoff.c │ ├── test_openmpt_xm_panslidemem.c │ ├── test_openmpt_xm_pathead.c │ ├── test_openmpt_xm_patloop_break.c │ ├── test_openmpt_xm_patloop_weird.c │ ├── test_openmpt_xm_patterndelays.c │ ├── test_openmpt_xm_patterndelaysretrig.c │ ├── test_openmpt_xm_pickup.c │ ├── test_openmpt_xm_porta_linkmem.c │ ├── test_openmpt_xm_porta_offset.c │ ├── test_openmpt_xm_porta_pickup.c │ ├── test_openmpt_xm_setenvpos.c │ ├── test_openmpt_xm_toneportamentomemory.c │ ├── test_openmpt_xm_tremolowaveforms.c │ ├── test_openmpt_xm_tremor.c │ ├── test_openmpt_xm_tremorinstr.c │ ├── test_openmpt_xm_tremorrecover.c │ ├── test_openmpt_xm_vibratowaveforms.c │ ├── test_player_dct_note.c │ ├── test_player_ft2_note_noins_after_invalid_ins.c │ ├── test_player_ft2_note_noins_after_keyoff.c │ ├── test_player_hmn_extras.c │ ├── test_player_invalid_mod_channels.c │ ├── test_player_invalid_mod_length.c │ ├── test_player_invalid_period.c │ ├── test_player_it_fade_env_reset.c │ ├── test_player_it_fade_env_reset_carry.c │ ├── test_player_it_keyoff.c │ ├── test_player_it_note_after_cut.c │ ├── test_player_it_noteoff_nosuck.c │ ├── test_player_it_portamento_after_cut_fade.c │ ├── test_player_it_portamento_after_cut_fade_cg.c │ ├── test_player_it_portamento_after_keyoff.c │ ├── test_player_it_portamento_after_keyoff_cg.c │ ├── test_player_it_portamento_envelope_reset.c │ ├── test_player_it_portamento_envelope_reset_cg.c │ ├── test_player_it_sample_porta.c │ ├── test_player_mdl_period.c │ ├── test_player_med_hold.c │ ├── test_player_med_synth.c │ ├── test_player_med_synth_2.c │ ├── test_player_nna_cont.c │ ├── test_player_nna_cut.c │ ├── test_player_nna_fade.c │ ├── test_player_nna_off.c │ ├── test_player_note_off_ft2.c │ ├── test_player_note_off_it.c │ ├── test_player_pan.c │ ├── test_player_period_amiga.c │ ├── test_player_period_mod_range.c │ ├── test_player_read_event.c │ ├── test_player_s3m_sample_porta.c │ ├── test_player_sample_sync.c │ ├── test_player_scan.c │ ├── test_player_virtual_channel.c │ ├── test_player_xm_keyoff_with_instrument.c │ ├── test_player_xm_portamento_envelope_reset.c │ ├── test_player_xm_portamento_target.c │ ├── test_porta_invalid_ins_ft2.c │ ├── test_porta_invalid_ins_it.c │ ├── test_porta_invalid_ins_mod.c │ ├── test_porta_invalid_ins_st3.c │ ├── test_porta_no_ins_ft2.c │ ├── test_porta_no_ins_it.c │ ├── test_porta_no_ins_mod.c │ ├── test_porta_no_ins_st3.c │ ├── test_porta_same_ins_ft2.c │ ├── test_porta_same_ins_it.c │ ├── test_porta_same_ins_mod.c │ ├── test_porta_same_ins_st3.c │ ├── test_porta_valid_ins_ft2.c │ ├── test_porta_valid_ins_it.c │ ├── test_porta_valid_ins_mod.c │ ├── test_porta_valid_ins_st3.c │ ├── test_prev_order_skip.c │ ├── test_prev_order_start.c │ ├── test_prev_order_start_seq.c │ ├── test_prowizard_fuchs.c │ ├── test_prowizard_starpack.c │ ├── test_prowizard_zen.c │ ├── test_read_file_16bit_big_endian.c │ ├── test_read_file_16bit_little_endian.c │ ├── test_read_file_24bit_big_endian.c │ ├── test_read_file_24bit_little_endian.c │ ├── test_read_file_32bit_big_endian.c │ ├── test_read_file_32bit_little_endian.c │ ├── test_read_file_8bit.c │ ├── test_read_file_hio_pipe.c │ ├── test_read_mem_16bit_big_endian.c │ ├── test_read_mem_16bit_little_endian.c │ ├── test_read_mem_32bit_big_endian.c │ ├── test_read_mem_32bit_little_endian.c │ ├── test_read_mem_hio.c │ ├── test_read_mem_hio_nosize.c │ ├── test_sample_load_16bit.c │ ├── test_sample_load_8bit.c │ ├── test_sample_load_delta.c │ ├── test_sample_load_endian.c │ ├── test_sample_load_signal.c │ ├── test_sample_load_skip.c │ ├── test_storlek_01_arpeggio_pitch_slide.c │ ├── test_storlek_02_arpeggio_no_value.c │ ├── test_storlek_03_compatible_gxx_off.c │ ├── test_storlek_04_compatible_gxx_on.c │ ├── test_storlek_05_gxx_fine_slides_memory.c │ ├── test_storlek_06_volume_column_and_fine_slides.c │ ├── test_storlek_07_note_cut_with_sample.c │ ├── test_storlek_08_out_of_range_delays.c │ ├── test_storlek_09_sample_change_no_note.c │ ├── test_storlek_10_pattern_loop.c │ ├── test_storlek_11_infinite_pattern_loop.c │ ├── test_storlek_12_tremor.c │ ├── test_storlek_13_tremor_with_old_effects.c │ ├── test_storlek_14_pingpong_loop_and_sample_number.c │ ├── test_storlek_15_retrigger.c │ ├── test_storlek_16_global_volume.c │ ├── test_storlek_17_pattern_row_delay.c │ ├── test_storlek_18_sample_number_new_note.c │ ├── test_storlek_19_random_waveform.c │ ├── test_storlek_20_pan_swing_and_set_pan.c │ ├── test_storlek_21_pitch_slide_limits.c │ ├── test_storlek_22_zero_cut_and_delay.c │ ├── test_storlek_23_portamento_with_no_note.c │ ├── test_storlek_24_short_envelope_loops.c │ ├── test_storlek_25_portamento_and_pitch_slide.c │ ├── test_string_adjustment.c │ ├── test_synth_adlib.c │ ├── test_synth_spectrum.c │ ├── test_write_file_16bit_big_endian.c │ ├── test_write_file_16bit_little_endian.c │ ├── test_write_file_32bit_big_endian.c │ ├── test_write_file_32bit_little_endian.c │ ├── test_write_file_8bit.c │ └── util.c ├── test │ ├── CMakeLists.txt │ ├── Makefile │ ├── test.c │ ├── test.it │ └── test.itz ├── vc │ ├── Makefile │ ├── libxmp.sln │ └── libxmp.vcproj.in ├── watcom.mif └── watcom.mif.in ├── mdxmini ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── Makefile ├── Makefile.lib ├── Makefile.psplib ├── README.md ├── fade.h ├── mak │ ├── general.mak │ ├── lib.mak │ ├── psp.mak │ └── w32.mak ├── mdxmini.txt ├── sdlplay.c ├── src │ ├── Doxyfile │ ├── class.h │ ├── mdx.h │ ├── mdx2151.c │ ├── mdx2151.h │ ├── mdxfile.c │ ├── mdxmini.c │ ├── mdxmini.h │ ├── mdxmml_ym2151.c │ ├── nlg.c │ ├── nlg.h │ ├── pcm8.c │ ├── pcm8.h │ ├── pdxfile.c │ ├── sin_tab.dat │ ├── tl_tab.dat │ ├── version.h │ ├── ym2151.c │ └── ym2151.h └── wavwrite.h ├── package.json ├── patches ├── node-unrar-js+0.8.1.patch └── trie-search+1.2.8.patch ├── psflib ├── .gitignore ├── CMakeLists.txt ├── Emscripten.Makefile ├── LICENSE ├── Makefile ├── psf2fs.c ├── psf2fs.h ├── psflib.c ├── psflib.h ├── psflib.pro ├── psflib.vcxproj └── psflib.vcxproj.filters ├── public ├── 404.html ├── 5-seconds-of-silence.mp3 ├── CNAME ├── chip-player-js.ico ├── icon-16x16.png ├── icon-64x64.png ├── index.html ├── manifest.json └── soundfonts │ ├── Nokia_30.sf2 │ ├── README.md │ └── gmgsx-plus.sf2 ├── scripts ├── ResigTrie.js ├── build-catalog.js ├── build-chip-core.js ├── build-chip-core.split.js ├── build.js ├── fix-n64-midi.js ├── fixvgm.js ├── httpserver.py ├── ns64-track-info.js ├── start.js └── unzip-all.sh ├── server └── index.js └── src ├── LICENSE ├── LocalFilesManager.js ├── RequestCache.js ├── Sequencer.js ├── Spectrogram.js ├── components ├── Announcements.js ├── App.js ├── AppFooter.js ├── AppHeader.js ├── Browse.js ├── DirectoryLink.js ├── DropMessage.js ├── FavoriteButton.js ├── Favorites.js ├── LocalFiles.js ├── MessageBox.js ├── PlayerParams.js ├── Search.js ├── Settings.js ├── Slider.js ├── ThemeHandler.js ├── TimeSlider.js ├── Toast.js ├── ToastProvider.js ├── UserProvider.js ├── VirtualizedList.js ├── Visualizer.js └── VolumeSlider.js ├── config ├── firebaseConfig.example.js └── index.js ├── effects └── SubBass.js ├── fonts ├── LICENSE ├── Tahoma.woff ├── fonts.css ├── int10h │ └── pxplus_vga_squarepx.ttf ├── mm-tahoma-8px.ttf ├── pentacom │ └── pentacom.jp.txt ├── pxplus_chipplayer.ttf └── pxplus_chipplayer.vfc ├── gm-patch-map.js ├── images ├── 98.css │ ├── button-down-active.svg │ ├── button-down.svg │ ├── checkmark.svg │ ├── radio-border-disabled.svg │ ├── radio-border.svg │ └── radio-dot.svg ├── Chip Player JS icon 16x16.psd ├── Chip Player JS icon 64x64.psd ├── back.png ├── chip-player-js-16x16.png ├── chip.png ├── copy.png ├── dice.png ├── download.png ├── folder.png ├── forward.png ├── icons.psd ├── link.png ├── next.png ├── pause.png ├── piano-keys.ai ├── piano-keys.png ├── pin-filled.png ├── pin-up.png ├── play.png ├── prev.png ├── repeat.png ├── shuffle.png ├── trash.png └── winamp │ ├── back.png │ ├── forward.png │ ├── handle-mini.png │ ├── handle-wide.png │ ├── next.png │ ├── pause.png │ ├── play.png │ ├── prev.png │ ├── thumb-bottom.png │ ├── thumb-mid.png │ ├── thumb-top.png │ ├── track.png │ └── winamp.psd ├── index.css ├── index.js ├── players ├── ChipWorkletProcessor.js ├── GMEPlayer.js ├── MDXPlayer.js ├── MIDIFilePlayer.js ├── MIDIPlayer.js ├── N64Player.js ├── Player.js ├── V2MPlayer.js ├── VGMPlayer.js ├── XMPPlayer.js └── midi │ └── midi-helpers.js ├── promisify-xhr.js ├── showcqtbar.c ├── tinyplayer.c ├── util.js └── winamp.css /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/babel.config.json -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /farbrausch-v2m/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/AUTHORS -------------------------------------------------------------------------------- /farbrausch-v2m/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/CHANGELOG -------------------------------------------------------------------------------- /farbrausch-v2m/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/CMakeLists.txt -------------------------------------------------------------------------------- /farbrausch-v2m/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/LICENSE -------------------------------------------------------------------------------- /farbrausch-v2m/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/README.md -------------------------------------------------------------------------------- /farbrausch-v2m/VERSION: -------------------------------------------------------------------------------- 1 | 0.20170725 2 | -------------------------------------------------------------------------------- /farbrausch-v2m/libv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/libv2.h -------------------------------------------------------------------------------- /farbrausch-v2m/phonemtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/phonemtab.h -------------------------------------------------------------------------------- /farbrausch-v2m/ronan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/ronan.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/scope.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/scope.h -------------------------------------------------------------------------------- /farbrausch-v2m/sounddef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/sounddef.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/sounddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/sounddef.h -------------------------------------------------------------------------------- /farbrausch-v2m/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/synth.h -------------------------------------------------------------------------------- /farbrausch-v2m/synth_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/synth_core.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/tinyplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/tinyplayer.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/types.h -------------------------------------------------------------------------------- /farbrausch-v2m/v2mconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/v2mconv.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/v2mconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/v2mconv.h -------------------------------------------------------------------------------- /farbrausch-v2m/v2mplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/v2mplayer.cpp -------------------------------------------------------------------------------- /farbrausch-v2m/v2mplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/v2mplayer.h -------------------------------------------------------------------------------- /farbrausch-v2m/v2mwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/farbrausch-v2m/v2mwrapper.cpp -------------------------------------------------------------------------------- /fluidlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/CMakeLists.txt -------------------------------------------------------------------------------- /fluidlite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/LICENSE -------------------------------------------------------------------------------- /fluidlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/README.md -------------------------------------------------------------------------------- /fluidlite/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/android/Android.mk -------------------------------------------------------------------------------- /fluidlite/fluidlite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/fluidlite.pc.in -------------------------------------------------------------------------------- /fluidlite/include/fluidlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/include/fluidlite.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_chan.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_chan.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_chorus.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_chorus.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_config.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_conv.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_conv.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_defsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_defsfont.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_defsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_defsfont.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_gen.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_gen.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_hash.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_hash.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_init.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_list.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_list.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_midi.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_mod.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_mod.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_phase.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_ramsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_ramsfont.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_ramsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_ramsfont.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_rev.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_rev.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_settings.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_settings.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_sfont.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_synth.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_synth.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_sys.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_sys.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_tuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_tuning.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_tuning.h -------------------------------------------------------------------------------- /fluidlite/src/fluid_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_voice.c -------------------------------------------------------------------------------- /fluidlite/src/fluid_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluid_voice.h -------------------------------------------------------------------------------- /fluidlite/src/fluidsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/fluidlite/src/fluidsynth.c -------------------------------------------------------------------------------- /game-music-emu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/.gitignore -------------------------------------------------------------------------------- /game-music-emu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/CMakeLists.txt -------------------------------------------------------------------------------- /game-music-emu/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/changes.txt -------------------------------------------------------------------------------- /game-music-emu/demo/basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/demo/basics.c -------------------------------------------------------------------------------- /game-music-emu/demo/features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/demo/features.c -------------------------------------------------------------------------------- /game-music-emu/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/design.txt -------------------------------------------------------------------------------- /game-music-emu/gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme.txt -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Core.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Ay_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Ay_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/C140_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/C140_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gb_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gb_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Gb_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gb_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gb_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gb_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Gb_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gb_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gb_Oscs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gb_Oscs.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Gb_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gb_Oscs.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gbs_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gbs_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gbs_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gbs_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Gbs_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gbs_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Gbs_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gbs_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gme_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gme_File.h -------------------------------------------------------------------------------- /game-music-emu/gme/Gym_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gym_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Gym_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Gym_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Hes_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Hes_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Kss_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Kss_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Kss_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Kss_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Kss_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Kss_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Kss_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Kss_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Kss_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Kss_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Music_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Music_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nes_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nes_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Nes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nes_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nes_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nes_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Nes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nes_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nes_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nes_Oscs.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nsf_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nsf_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nsf_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nsf_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Nsf_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nsf_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Nsf_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nsf_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nsf_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nsf_Impl.h -------------------------------------------------------------------------------- /game-music-emu/gme/Nsfe_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Nsfe_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Opl_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Opl_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Opl_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Opl_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Pwm_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Pwm_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Pwm_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Pwm_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Resampler.h -------------------------------------------------------------------------------- /game-music-emu/gme/Rom_Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Rom_Data.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Sap_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sap_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sgc_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sgc_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sgc_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sgc_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Sgc_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sgc_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Sgc_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sgc_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sgc_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sgc_Impl.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sms_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sms_Apu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Sms_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sms_Apu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Sms_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Sms_Oscs.h -------------------------------------------------------------------------------- /game-music-emu/gme/Snes_Spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Snes_Spc.h -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Dsp.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Dsp.h -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Sfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Sfm.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Spc_Sfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Spc_Sfm.h -------------------------------------------------------------------------------- /game-music-emu/gme/Upsampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Upsampler.h -------------------------------------------------------------------------------- /game-music-emu/gme/Vgm_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Vgm_Core.h -------------------------------------------------------------------------------- /game-music-emu/gme/Vgm_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Vgm_Emu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Vgm_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Vgm_Emu.h -------------------------------------------------------------------------------- /game-music-emu/gme/Z80_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Z80_Cpu.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/Z80_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/Z80_Cpu.h -------------------------------------------------------------------------------- /game-music-emu/gme/adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/adlib.h -------------------------------------------------------------------------------- /game-music-emu/gme/c140.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/c140.c -------------------------------------------------------------------------------- /game-music-emu/gme/c140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/c140.h -------------------------------------------------------------------------------- /game-music-emu/gme/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/dbopl.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/dbopl.h -------------------------------------------------------------------------------- /game-music-emu/gme/divfix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/divfix.h -------------------------------------------------------------------------------- /game-music-emu/gme/emuconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/emuconfig.h -------------------------------------------------------------------------------- /game-music-emu/gme/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/fm.c -------------------------------------------------------------------------------- /game-music-emu/gme/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/fm.h -------------------------------------------------------------------------------- /game-music-emu/gme/fm2612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/fm2612.c -------------------------------------------------------------------------------- /game-music-emu/gme/fmopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/fmopl.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/fmopl.h -------------------------------------------------------------------------------- /game-music-emu/gme/gb_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/gb_cpu_io.h -------------------------------------------------------------------------------- /game-music-emu/gme/gme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/gme.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/gme.h -------------------------------------------------------------------------------- /game-music-emu/gme/gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/gme.txt -------------------------------------------------------------------------------- /game-music-emu/gme/gme_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/gme_types.h -------------------------------------------------------------------------------- /game-music-emu/gme/i_fmpac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/i_fmpac.h -------------------------------------------------------------------------------- /game-music-emu/gme/i_fmunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/i_fmunit.h -------------------------------------------------------------------------------- /game-music-emu/gme/i_vrc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/i_vrc7.h -------------------------------------------------------------------------------- /game-music-emu/gme/k051649.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/k051649.c -------------------------------------------------------------------------------- /game-music-emu/gme/k051649.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/k051649.h -------------------------------------------------------------------------------- /game-music-emu/gme/k053260.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/k053260.c -------------------------------------------------------------------------------- /game-music-emu/gme/k053260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/k053260.h -------------------------------------------------------------------------------- /game-music-emu/gme/k054539.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/k054539.c -------------------------------------------------------------------------------- /game-music-emu/gme/k054539.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/k054539.h -------------------------------------------------------------------------------- /game-music-emu/gme/kmsnddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/kmsnddev.h -------------------------------------------------------------------------------- /game-music-emu/gme/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/license.txt -------------------------------------------------------------------------------- /game-music-emu/gme/mamedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/mamedef.h -------------------------------------------------------------------------------- /game-music-emu/gme/mathdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/mathdefs.h -------------------------------------------------------------------------------- /game-music-emu/gme/nestypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/nestypes.h -------------------------------------------------------------------------------- /game-music-emu/gme/okim6258.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/okim6258.c -------------------------------------------------------------------------------- /game-music-emu/gme/okim6258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/okim6258.h -------------------------------------------------------------------------------- /game-music-emu/gme/okim6295.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/okim6295.c -------------------------------------------------------------------------------- /game-music-emu/gme/okim6295.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/okim6295.h -------------------------------------------------------------------------------- /game-music-emu/gme/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/pwm.c -------------------------------------------------------------------------------- /game-music-emu/gme/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/pwm.h -------------------------------------------------------------------------------- /game-music-emu/gme/qmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/qmix.c -------------------------------------------------------------------------------- /game-music-emu/gme/qmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/qmix.h -------------------------------------------------------------------------------- /game-music-emu/gme/rf5c68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/rf5c68.c -------------------------------------------------------------------------------- /game-music-emu/gme/rf5c68.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/rf5c68.h -------------------------------------------------------------------------------- /game-music-emu/gme/s_deltat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/s_deltat.c -------------------------------------------------------------------------------- /game-music-emu/gme/s_deltat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/s_deltat.h -------------------------------------------------------------------------------- /game-music-emu/gme/s_logtbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/s_logtbl.c -------------------------------------------------------------------------------- /game-music-emu/gme/s_opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/s_opl.c -------------------------------------------------------------------------------- /game-music-emu/gme/s_opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/s_opl.h -------------------------------------------------------------------------------- /game-music-emu/gme/ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/ym2151.c -------------------------------------------------------------------------------- /game-music-emu/gme/ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/ym2151.h -------------------------------------------------------------------------------- /game-music-emu/gme/ym2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/ym2413.c -------------------------------------------------------------------------------- /game-music-emu/gme/ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/gme/ym2413.h -------------------------------------------------------------------------------- /game-music-emu/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/license.txt -------------------------------------------------------------------------------- /game-music-emu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/readme.txt -------------------------------------------------------------------------------- /game-music-emu/test.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/test.m3u -------------------------------------------------------------------------------- /game-music-emu/test.nsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/test.nsf -------------------------------------------------------------------------------- /game-music-emu/test.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/test.vgz -------------------------------------------------------------------------------- /game-music-emu/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/game-music-emu/test/test.sh -------------------------------------------------------------------------------- /lazyusf2/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | liblazyusf.a 3 | bench 4 | dumpresampled 5 | -------------------------------------------------------------------------------- /lazyusf2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/CMakeLists.txt -------------------------------------------------------------------------------- /lazyusf2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/Makefile -------------------------------------------------------------------------------- /lazyusf2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/README.md -------------------------------------------------------------------------------- /lazyusf2/ai/ai_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/ai/ai_controller.c -------------------------------------------------------------------------------- /lazyusf2/ai/ai_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/ai/ai_controller.h -------------------------------------------------------------------------------- /lazyusf2/api/api_export.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/api_export.ver -------------------------------------------------------------------------------- /lazyusf2/api/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/callbacks.c -------------------------------------------------------------------------------- /lazyusf2/api/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/callbacks.h -------------------------------------------------------------------------------- /lazyusf2/api/m64p_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/m64p_common.h -------------------------------------------------------------------------------- /lazyusf2/api/m64p_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/m64p_config.h -------------------------------------------------------------------------------- /lazyusf2/api/m64p_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/m64p_plugin.h -------------------------------------------------------------------------------- /lazyusf2/api/m64p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/m64p_types.h -------------------------------------------------------------------------------- /lazyusf2/api/m64p_vidext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/api/m64p_vidext.h -------------------------------------------------------------------------------- /lazyusf2/main/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/list.h -------------------------------------------------------------------------------- /lazyusf2/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/main.c -------------------------------------------------------------------------------- /lazyusf2/main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/main.h -------------------------------------------------------------------------------- /lazyusf2/main/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/rom.c -------------------------------------------------------------------------------- /lazyusf2/main/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/rom.h -------------------------------------------------------------------------------- /lazyusf2/main/savestates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/savestates.c -------------------------------------------------------------------------------- /lazyusf2/main/savestates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/savestates.h -------------------------------------------------------------------------------- /lazyusf2/main/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/util.c -------------------------------------------------------------------------------- /lazyusf2/main/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/util.h -------------------------------------------------------------------------------- /lazyusf2/main/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/main/version.h -------------------------------------------------------------------------------- /lazyusf2/memory/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/memory/memory.c -------------------------------------------------------------------------------- /lazyusf2/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/memory/memory.h -------------------------------------------------------------------------------- /lazyusf2/osal/preproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/osal/preproc.h -------------------------------------------------------------------------------- /lazyusf2/pi/cart_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/pi/cart_rom.c -------------------------------------------------------------------------------- /lazyusf2/pi/cart_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/pi/cart_rom.h -------------------------------------------------------------------------------- /lazyusf2/pi/pi_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/pi/pi_controller.c -------------------------------------------------------------------------------- /lazyusf2/pi/pi_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/pi/pi_controller.h -------------------------------------------------------------------------------- /lazyusf2/prj/msvc/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | *.user 4 | -------------------------------------------------------------------------------- /lazyusf2/r4300/cp0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/cp0.c -------------------------------------------------------------------------------- /lazyusf2/r4300/cp0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/cp0.h -------------------------------------------------------------------------------- /lazyusf2/r4300/cp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/cp1.c -------------------------------------------------------------------------------- /lazyusf2/r4300/cp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/cp1.h -------------------------------------------------------------------------------- /lazyusf2/r4300/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/exception.c -------------------------------------------------------------------------------- /lazyusf2/r4300/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/exception.h -------------------------------------------------------------------------------- /lazyusf2/r4300/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/fpu.h -------------------------------------------------------------------------------- /lazyusf2/r4300/interupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/interupt.c -------------------------------------------------------------------------------- /lazyusf2/r4300/interupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/interupt.h -------------------------------------------------------------------------------- /lazyusf2/r4300/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/macros.h -------------------------------------------------------------------------------- /lazyusf2/r4300/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/ops.h -------------------------------------------------------------------------------- /lazyusf2/r4300/r4300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/r4300.c -------------------------------------------------------------------------------- /lazyusf2/r4300/r4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/r4300.h -------------------------------------------------------------------------------- /lazyusf2/r4300/r4300_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/r4300_core.c -------------------------------------------------------------------------------- /lazyusf2/r4300/r4300_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/r4300_core.h -------------------------------------------------------------------------------- /lazyusf2/r4300/recomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/recomp.c -------------------------------------------------------------------------------- /lazyusf2/r4300/recomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/recomp.h -------------------------------------------------------------------------------- /lazyusf2/r4300/recomph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/recomph.h -------------------------------------------------------------------------------- /lazyusf2/r4300/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/reset.c -------------------------------------------------------------------------------- /lazyusf2/r4300/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/reset.h -------------------------------------------------------------------------------- /lazyusf2/r4300/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/tlb.c -------------------------------------------------------------------------------- /lazyusf2/r4300/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/tlb.h -------------------------------------------------------------------------------- /lazyusf2/r4300/x86/gbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86/gbc.c -------------------------------------------------------------------------------- /lazyusf2/r4300/x86/gcop0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86/gcop0.c -------------------------------------------------------------------------------- /lazyusf2/r4300/x86/gcop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86/gcop1.c -------------------------------------------------------------------------------- /lazyusf2/r4300/x86/gr4300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86/gr4300.c -------------------------------------------------------------------------------- /lazyusf2/r4300/x86/gtlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86/gtlb.c -------------------------------------------------------------------------------- /lazyusf2/r4300/x86/rjump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86/rjump.c -------------------------------------------------------------------------------- /lazyusf2/r4300/x86_64/gbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/r4300/x86_64/gbc.c -------------------------------------------------------------------------------- /lazyusf2/rdp/rdp_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rdp/rdp_core.c -------------------------------------------------------------------------------- /lazyusf2/rdp/rdp_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rdp/rdp_core.h -------------------------------------------------------------------------------- /lazyusf2/ri/rdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/ri/rdram.c -------------------------------------------------------------------------------- /lazyusf2/ri/rdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/ri/rdram.h -------------------------------------------------------------------------------- /lazyusf2/ri/ri_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/ri/ri_controller.c -------------------------------------------------------------------------------- /lazyusf2/ri/ri_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/ri/ri_controller.h -------------------------------------------------------------------------------- /lazyusf2/rsp/rsp_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp/rsp_core.c -------------------------------------------------------------------------------- /lazyusf2/rsp/rsp_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp/rsp_core.h -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/LICENSES -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/alist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/alist.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/alist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/alist.h -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/audio.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/audio.h -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/cicx105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/cicx105.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/common.h -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/hle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/hle.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/hle.h -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/jpeg.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/memory.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/memory.h -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/mp3.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/musyx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/musyx.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/plugin.c -------------------------------------------------------------------------------- /lazyusf2/rsp_hle/ucodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_hle/ucodes.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/bench.c -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/config.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/execute.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/matrix.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/rsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/rsp.c -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/rsp.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/rsp_lle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/rsp_lle.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/su.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/cf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/cf.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/clamp.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vabs.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vadd.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vaddc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vaddc.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vand.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vch.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vcl.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vcr.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/veq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/veq.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vge.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vlt.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmacf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmacf.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmacq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmacq.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmacu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmacu.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmadh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmadh.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmadl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmadl.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmadm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmadm.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmadn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmadn.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmov.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmrg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmrg.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmudh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmudh.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmudl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmudl.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmudm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmudm.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmudn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmudn.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmulf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmulf.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vmulu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vmulu.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vnand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vnand.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vne.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vnop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vnop.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vnor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vnor.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vnxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vnxor.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vor.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vrcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vrcp.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vrcph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vrcph.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vrcpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vrcpl.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vrsq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vrsq.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vrsqh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vrsqh.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vrsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vrsql.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vsaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vsaw.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vsub.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vsubc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vsubc.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vu.h -------------------------------------------------------------------------------- /lazyusf2/rsp_lle/vu/vxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/rsp_lle/vu/vxor.h -------------------------------------------------------------------------------- /lazyusf2/si/cic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/si/cic.c -------------------------------------------------------------------------------- /lazyusf2/si/cic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/si/cic.h -------------------------------------------------------------------------------- /lazyusf2/si/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/si/pif.c -------------------------------------------------------------------------------- /lazyusf2/si/pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/si/pif.h -------------------------------------------------------------------------------- /lazyusf2/si/si_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/si/si_controller.c -------------------------------------------------------------------------------- /lazyusf2/si/si_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/si/si_controller.h -------------------------------------------------------------------------------- /lazyusf2/test/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/test/bench.c -------------------------------------------------------------------------------- /lazyusf2/usf/barray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/barray.c -------------------------------------------------------------------------------- /lazyusf2/usf/barray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/barray.h -------------------------------------------------------------------------------- /lazyusf2/usf/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/resampler.c -------------------------------------------------------------------------------- /lazyusf2/usf/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/resampler.h -------------------------------------------------------------------------------- /lazyusf2/usf/usf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/usf.c -------------------------------------------------------------------------------- /lazyusf2/usf/usf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/usf.h -------------------------------------------------------------------------------- /lazyusf2/usf/usf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/usf/usf_internal.h -------------------------------------------------------------------------------- /lazyusf2/vi/vi_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/vi/vi_controller.c -------------------------------------------------------------------------------- /lazyusf2/vi/vi_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/lazyusf2/vi/vi_controller.h -------------------------------------------------------------------------------- /libADLMIDI/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/.appveyor.yml -------------------------------------------------------------------------------- /libADLMIDI/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/.gitattributes -------------------------------------------------------------------------------- /libADLMIDI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/.gitignore -------------------------------------------------------------------------------- /libADLMIDI/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/.travis.yml -------------------------------------------------------------------------------- /libADLMIDI/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/AUTHORS -------------------------------------------------------------------------------- /libADLMIDI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/CMakeLists.txt -------------------------------------------------------------------------------- /libADLMIDI/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/Doxyfile -------------------------------------------------------------------------------- /libADLMIDI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/LICENSE -------------------------------------------------------------------------------- /libADLMIDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/README.md -------------------------------------------------------------------------------- /libADLMIDI/android/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | libs/ 3 | -------------------------------------------------------------------------------- /libADLMIDI/banks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/banks.ini -------------------------------------------------------------------------------- /libADLMIDI/cmake/openwattcom/Linux-OpenWatcom-C.cmake: -------------------------------------------------------------------------------- 1 | include(Platform/Windows-OpenWatcom) 2 | -------------------------------------------------------------------------------- /libADLMIDI/cmake/openwattcom/Linux-OpenWatcom-CXX.cmake: -------------------------------------------------------------------------------- 1 | include(Platform/Windows-OpenWatcom) 2 | -------------------------------------------------------------------------------- /libADLMIDI/libADLMIDI.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/libADLMIDI.pc.in -------------------------------------------------------------------------------- /libADLMIDI/src/adlmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/src/adlmidi.cpp -------------------------------------------------------------------------------- /libADLMIDI/src/adlmidi_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/src/adlmidi_db.h -------------------------------------------------------------------------------- /libADLMIDI/src/fraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/src/fraction.hpp -------------------------------------------------------------------------------- /libADLMIDI/src/inst_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/src/inst_db.cpp -------------------------------------------------------------------------------- /libADLMIDI/src/oplinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/src/oplinst.h -------------------------------------------------------------------------------- /libADLMIDI/test.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libADLMIDI/test.wopl -------------------------------------------------------------------------------- /libADLMIDI/utils/winmm_drv/installer/install.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup install -------------------------------------------------------------------------------- /libADLMIDI/utils/winmm_drv/installer/uninstall.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup uninstall -------------------------------------------------------------------------------- /libvgm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/.gitattributes -------------------------------------------------------------------------------- /libvgm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/.gitignore -------------------------------------------------------------------------------- /libvgm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/CMakeLists.txt -------------------------------------------------------------------------------- /libvgm/Compiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/Compiling.txt -------------------------------------------------------------------------------- /libvgm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/Dockerfile -------------------------------------------------------------------------------- /libvgm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/Makefile -------------------------------------------------------------------------------- /libvgm/audemutest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audemutest.c -------------------------------------------------------------------------------- /libvgm/audio/AudDrv_ALSA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudDrv_ALSA.c -------------------------------------------------------------------------------- /libvgm/audio/AudDrv_OSS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudDrv_OSS.c -------------------------------------------------------------------------------- /libvgm/audio/AudDrv_Pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudDrv_Pulse.c -------------------------------------------------------------------------------- /libvgm/audio/AudDrv_SADA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudDrv_SADA.c -------------------------------------------------------------------------------- /libvgm/audio/AudDrv_WinMM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudDrv_WinMM.c -------------------------------------------------------------------------------- /libvgm/audio/AudDrv_libao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudDrv_libao.c -------------------------------------------------------------------------------- /libvgm/audio/AudioStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudioStream.c -------------------------------------------------------------------------------- /libvgm/audio/AudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudioStream.h -------------------------------------------------------------------------------- /libvgm/audio/AudioStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/AudioStructs.h -------------------------------------------------------------------------------- /libvgm/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audio/CMakeLists.txt -------------------------------------------------------------------------------- /libvgm/audiotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/audiotest.c -------------------------------------------------------------------------------- /libvgm/cmake/joinpaths/Info.txt: -------------------------------------------------------------------------------- 1 | CMake path joining from https://github.com/jtojnar/cmake-snips 2 | -------------------------------------------------------------------------------- /libvgm/cmake/libvgm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/cmake/libvgm.pc.in -------------------------------------------------------------------------------- /libvgm/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/cmake/utils.cmake -------------------------------------------------------------------------------- /libvgm/common_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/common_def.h -------------------------------------------------------------------------------- /libvgm/emu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/CMakeLists.txt -------------------------------------------------------------------------------- /libvgm/emu/EmuCores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/EmuCores.h -------------------------------------------------------------------------------- /libvgm/emu/EmuHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/EmuHelper.h -------------------------------------------------------------------------------- /libvgm/emu/EmuStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/EmuStructs.h -------------------------------------------------------------------------------- /libvgm/emu/RatioCntr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/RatioCntr.h -------------------------------------------------------------------------------- /libvgm/emu/Resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/Resampler.c -------------------------------------------------------------------------------- /libvgm/emu/Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/Resampler.h -------------------------------------------------------------------------------- /libvgm/emu/SoundDevs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/SoundDevs.h -------------------------------------------------------------------------------- /libvgm/emu/SoundEmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/SoundEmu.c -------------------------------------------------------------------------------- /libvgm/emu/SoundEmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/SoundEmu.h -------------------------------------------------------------------------------- /libvgm/emu/cores/2151intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/2151intf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/2151intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/2151intf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/2413intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/2413intf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/2413intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/2413intf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/2612intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/2612intf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/2612intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/2612intf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/262intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/262intf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/262intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/262intf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/adlibemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/adlibemu.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ay8910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ay8910.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ay8910.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ay8910.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ayintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ayintf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ayintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ayintf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/c140.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/c140.c -------------------------------------------------------------------------------- /libvgm/emu/cores/c140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/c140.h -------------------------------------------------------------------------------- /libvgm/emu/cores/c219.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/c219.c -------------------------------------------------------------------------------- /libvgm/emu/cores/c219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/c219.h -------------------------------------------------------------------------------- /libvgm/emu/cores/c352.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/c352.c -------------------------------------------------------------------------------- /libvgm/emu/cores/c352.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/c352.h -------------------------------------------------------------------------------- /libvgm/emu/cores/emu2149.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/emu2149.c -------------------------------------------------------------------------------- /libvgm/emu/cores/emu2149.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/emu2149.h -------------------------------------------------------------------------------- /libvgm/emu/cores/emu2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/emu2413.c -------------------------------------------------------------------------------- /libvgm/emu/cores/emu2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/emu2413.h -------------------------------------------------------------------------------- /libvgm/emu/cores/emutypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/emutypes.h -------------------------------------------------------------------------------- /libvgm/emu/cores/es5503.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/es5503.c -------------------------------------------------------------------------------- /libvgm/emu/cores/es5503.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/es5503.h -------------------------------------------------------------------------------- /libvgm/emu/cores/es5506.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/es5506.c -------------------------------------------------------------------------------- /libvgm/emu/cores/es5506.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/es5506.h -------------------------------------------------------------------------------- /libvgm/emu/cores/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/fmopl.c -------------------------------------------------------------------------------- /libvgm/emu/cores/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/fmopl.h -------------------------------------------------------------------------------- /libvgm/emu/cores/fmopn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/fmopn.c -------------------------------------------------------------------------------- /libvgm/emu/cores/fmopn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/fmopn.h -------------------------------------------------------------------------------- /libvgm/emu/cores/gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/gb.c -------------------------------------------------------------------------------- /libvgm/emu/cores/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/gb.h -------------------------------------------------------------------------------- /libvgm/emu/cores/iremga20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/iremga20.c -------------------------------------------------------------------------------- /libvgm/emu/cores/iremga20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/iremga20.h -------------------------------------------------------------------------------- /libvgm/emu/cores/k051649.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/k051649.c -------------------------------------------------------------------------------- /libvgm/emu/cores/k051649.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/k051649.h -------------------------------------------------------------------------------- /libvgm/emu/cores/k053260.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/k053260.c -------------------------------------------------------------------------------- /libvgm/emu/cores/k053260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/k053260.h -------------------------------------------------------------------------------- /libvgm/emu/cores/k054539.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/k054539.c -------------------------------------------------------------------------------- /libvgm/emu/cores/k054539.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/k054539.h -------------------------------------------------------------------------------- /libvgm/emu/cores/mikey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/mikey.c -------------------------------------------------------------------------------- /libvgm/emu/cores/mikey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/mikey.h -------------------------------------------------------------------------------- /libvgm/emu/cores/multipcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/multipcm.c -------------------------------------------------------------------------------- /libvgm/emu/cores/multipcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/multipcm.h -------------------------------------------------------------------------------- /libvgm/emu/cores/nes_apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nes_apu.c -------------------------------------------------------------------------------- /libvgm/emu/cores/nes_apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nes_apu.h -------------------------------------------------------------------------------- /libvgm/emu/cores/nes_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nes_defs.h -------------------------------------------------------------------------------- /libvgm/emu/cores/nesintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nesintf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/nesintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nesintf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/nukedopm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nukedopm.c -------------------------------------------------------------------------------- /libvgm/emu/cores/nukedopm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/nukedopm.h -------------------------------------------------------------------------------- /libvgm/emu/cores/okiadpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/okiadpcm.c -------------------------------------------------------------------------------- /libvgm/emu/cores/okiadpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/okiadpcm.h -------------------------------------------------------------------------------- /libvgm/emu/cores/okim6258.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/okim6258.c -------------------------------------------------------------------------------- /libvgm/emu/cores/okim6258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/okim6258.h -------------------------------------------------------------------------------- /libvgm/emu/cores/okim6295.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/okim6295.c -------------------------------------------------------------------------------- /libvgm/emu/cores/okim6295.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/okim6295.h -------------------------------------------------------------------------------- /libvgm/emu/cores/oplintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/oplintf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/oplintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/oplintf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/opnintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/opnintf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/opnintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/opnintf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/pokey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/pokey.c -------------------------------------------------------------------------------- /libvgm/emu/cores/pokey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/pokey.h -------------------------------------------------------------------------------- /libvgm/emu/cores/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/pwm.c -------------------------------------------------------------------------------- /libvgm/emu/cores/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/pwm.h -------------------------------------------------------------------------------- /libvgm/emu/cores/rf5c68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/rf5c68.c -------------------------------------------------------------------------------- /libvgm/emu/cores/rf5c68.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/rf5c68.h -------------------------------------------------------------------------------- /libvgm/emu/cores/rf5cintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/rf5cintf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/rf5cintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/rf5cintf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/saaintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/saaintf.c -------------------------------------------------------------------------------- /libvgm/emu/cores/saaintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/saaintf.h -------------------------------------------------------------------------------- /libvgm/emu/cores/scd_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scd_pcm.c -------------------------------------------------------------------------------- /libvgm/emu/cores/scd_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scd_pcm.h -------------------------------------------------------------------------------- /libvgm/emu/cores/scsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scsp.c -------------------------------------------------------------------------------- /libvgm/emu/cores/scsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scsp.h -------------------------------------------------------------------------------- /libvgm/emu/cores/scspdsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scspdsp.c -------------------------------------------------------------------------------- /libvgm/emu/cores/scspdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scspdsp.h -------------------------------------------------------------------------------- /libvgm/emu/cores/scsplfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/scsplfo.c -------------------------------------------------------------------------------- /libvgm/emu/cores/segapcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/segapcm.c -------------------------------------------------------------------------------- /libvgm/emu/cores/segapcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/segapcm.h -------------------------------------------------------------------------------- /libvgm/emu/cores/sn76489.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/sn76489.c -------------------------------------------------------------------------------- /libvgm/emu/cores/sn76489.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/sn76489.h -------------------------------------------------------------------------------- /libvgm/emu/cores/sn76496.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/sn76496.c -------------------------------------------------------------------------------- /libvgm/emu/cores/sn76496.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/sn76496.h -------------------------------------------------------------------------------- /libvgm/emu/cores/upd7759.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/upd7759.c -------------------------------------------------------------------------------- /libvgm/emu/cores/upd7759.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/upd7759.h -------------------------------------------------------------------------------- /libvgm/emu/cores/vsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/vsu.c -------------------------------------------------------------------------------- /libvgm/emu/cores/vsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/vsu.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ws_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ws_audio.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ws_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ws_audio.h -------------------------------------------------------------------------------- /libvgm/emu/cores/x1_010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/x1_010.c -------------------------------------------------------------------------------- /libvgm/emu/cores/x1_010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/x1_010.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym2151.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym2151.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ym2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym2413.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym2413.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ym2612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym2612.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ym2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym2612.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ym3438.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym3438.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ym3438.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ym3438.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ymdeltat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymdeltat.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ymdeltat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymdeltat.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ymf262.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymf262.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ymf262.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymf262.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ymf271.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymf271.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ymf271.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymf271.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ymf278b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymf278b.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ymf278b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymf278b.h -------------------------------------------------------------------------------- /libvgm/emu/cores/ymz280b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymz280b.c -------------------------------------------------------------------------------- /libvgm/emu/cores/ymz280b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/cores/ymz280b.h -------------------------------------------------------------------------------- /libvgm/emu/dac_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/dac_control.c -------------------------------------------------------------------------------- /libvgm/emu/dac_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/dac_control.h -------------------------------------------------------------------------------- /libvgm/emu/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/logging.c -------------------------------------------------------------------------------- /libvgm/emu/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/logging.h -------------------------------------------------------------------------------- /libvgm/emu/panning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/panning.c -------------------------------------------------------------------------------- /libvgm/emu/panning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/panning.h -------------------------------------------------------------------------------- /libvgm/emu/snddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emu/snddef.h -------------------------------------------------------------------------------- /libvgm/emutest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/emutest.c -------------------------------------------------------------------------------- /libvgm/libAudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libAudio.vcxproj -------------------------------------------------------------------------------- /libvgm/libEmu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libEmu.vcxproj -------------------------------------------------------------------------------- /libvgm/libVgmTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libVgmTest.sln -------------------------------------------------------------------------------- /libvgm/libVgmTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libVgmTest.vcxproj -------------------------------------------------------------------------------- /libvgm/libs/iconv/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/iconv/Info.txt -------------------------------------------------------------------------------- /libvgm/libs/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/include/zconf.h -------------------------------------------------------------------------------- /libvgm/libs/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/include/zlib.h -------------------------------------------------------------------------------- /libvgm/libs/lib/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zdll.lib -------------------------------------------------------------------------------- /libvgm/libs/lib/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zlib.def -------------------------------------------------------------------------------- /libvgm/libs/lib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zlib.lib -------------------------------------------------------------------------------- /libvgm/libs/lib/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zlib.txt -------------------------------------------------------------------------------- /libvgm/libs/lib/zlib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zlib64.lib -------------------------------------------------------------------------------- /libvgm/libs/lib/zlib64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zlib64d.lib -------------------------------------------------------------------------------- /libvgm/libs/lib/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/libs/lib/zlibd.lib -------------------------------------------------------------------------------- /libvgm/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player.cpp -------------------------------------------------------------------------------- /libvgm/player/dblk_compr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/dblk_compr.c -------------------------------------------------------------------------------- /libvgm/player/dblk_compr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/dblk_compr.h -------------------------------------------------------------------------------- /libvgm/player/droplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/droplayer.cpp -------------------------------------------------------------------------------- /libvgm/player/droplayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/droplayer.hpp -------------------------------------------------------------------------------- /libvgm/player/gymplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/gymplayer.cpp -------------------------------------------------------------------------------- /libvgm/player/gymplayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/gymplayer.hpp -------------------------------------------------------------------------------- /libvgm/player/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/helper.c -------------------------------------------------------------------------------- /libvgm/player/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/helper.h -------------------------------------------------------------------------------- /libvgm/player/playera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/playera.cpp -------------------------------------------------------------------------------- /libvgm/player/playera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/playera.hpp -------------------------------------------------------------------------------- /libvgm/player/s98player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/s98player.cpp -------------------------------------------------------------------------------- /libvgm/player/s98player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/s98player.hpp -------------------------------------------------------------------------------- /libvgm/player/vgmplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/vgmplayer.cpp -------------------------------------------------------------------------------- /libvgm/player/vgmplayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/player/vgmplayer.hpp -------------------------------------------------------------------------------- /libvgm/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/stdbool.h -------------------------------------------------------------------------------- /libvgm/stdtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/stdtype.h -------------------------------------------------------------------------------- /libvgm/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/CMakeLists.txt -------------------------------------------------------------------------------- /libvgm/utils/DataLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/DataLoader.c -------------------------------------------------------------------------------- /libvgm/utils/DataLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/DataLoader.h -------------------------------------------------------------------------------- /libvgm/utils/FileLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/FileLoader.c -------------------------------------------------------------------------------- /libvgm/utils/FileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/FileLoader.h -------------------------------------------------------------------------------- /libvgm/utils/MemoryLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/MemoryLoader.c -------------------------------------------------------------------------------- /libvgm/utils/MemoryLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/MemoryLoader.h -------------------------------------------------------------------------------- /libvgm/utils/OSMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/OSMutex.h -------------------------------------------------------------------------------- /libvgm/utils/OSMutex_Win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/OSMutex_Win.c -------------------------------------------------------------------------------- /libvgm/utils/OSSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/OSSignal.h -------------------------------------------------------------------------------- /libvgm/utils/OSSignal_Win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/OSSignal_Win.c -------------------------------------------------------------------------------- /libvgm/utils/OSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/OSThread.h -------------------------------------------------------------------------------- /libvgm/utils/OSThread_Win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/OSThread_Win.c -------------------------------------------------------------------------------- /libvgm/utils/StrUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/utils/StrUtils.h -------------------------------------------------------------------------------- /libvgm/vgm2wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/vgm2wav.cpp -------------------------------------------------------------------------------- /libvgm/vgm_dbcompr_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/vgm_dbcompr_bench.c -------------------------------------------------------------------------------- /libvgm/vgmtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libvgm/vgmtest.c -------------------------------------------------------------------------------- /libxmp/.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/.github/codecov.yml -------------------------------------------------------------------------------- /libxmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/.gitignore -------------------------------------------------------------------------------- /libxmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/CMakeLists.txt -------------------------------------------------------------------------------- /libxmp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/INSTALL -------------------------------------------------------------------------------- /libxmp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/Makefile.in -------------------------------------------------------------------------------- /libxmp/Makefile.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/Makefile.lite -------------------------------------------------------------------------------- /libxmp/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/Makefile.os2 -------------------------------------------------------------------------------- /libxmp/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/Makefile.vc -------------------------------------------------------------------------------- /libxmp/Makefile.vc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/Makefile.vc.in -------------------------------------------------------------------------------- /libxmp/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/Makefile.w32 -------------------------------------------------------------------------------- /libxmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/README -------------------------------------------------------------------------------- /libxmp/TODO.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/TODO.5 -------------------------------------------------------------------------------- /libxmp/aclocal.m4: -------------------------------------------------------------------------------- 1 | m4_include([m4/ld.m4]) 2 | -------------------------------------------------------------------------------- /libxmp/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoconf 4 | -------------------------------------------------------------------------------- /libxmp/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/cmake/Makefile -------------------------------------------------------------------------------- /libxmp/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/config.guess -------------------------------------------------------------------------------- /libxmp/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/config.sub -------------------------------------------------------------------------------- /libxmp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/configure.ac -------------------------------------------------------------------------------- /libxmp/docs/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/COPYING.LIB -------------------------------------------------------------------------------- /libxmp/docs/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/CREDITS -------------------------------------------------------------------------------- /libxmp/docs/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/Changelog -------------------------------------------------------------------------------- /libxmp/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/Makefile -------------------------------------------------------------------------------- /libxmp/docs/adlib_sb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/adlib_sb.txt -------------------------------------------------------------------------------- /libxmp/docs/ay-3-8912.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/ay-3-8912.txt -------------------------------------------------------------------------------- /libxmp/docs/coverity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/coverity.c -------------------------------------------------------------------------------- /libxmp/docs/custom.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/custom.style -------------------------------------------------------------------------------- /libxmp/docs/fixloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/fixloop.txt -------------------------------------------------------------------------------- /libxmp/docs/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/669.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/669.doc -------------------------------------------------------------------------------- /libxmp/docs/formats/669.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/669.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/amf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/amf.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/d00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/d00.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/gdm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/gdm.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/hsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/hsc.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/plm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/plm.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/psm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/psm.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/rad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/rad.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/stm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/stm.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/ut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/ut.txt -------------------------------------------------------------------------------- /libxmp/docs/formats/xm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/formats/xm.txt -------------------------------------------------------------------------------- /libxmp/docs/libxmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/libxmp.rst -------------------------------------------------------------------------------- /libxmp/docs/st02-ok.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/st02-ok.sample -------------------------------------------------------------------------------- /libxmp/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/docs/style.css -------------------------------------------------------------------------------- /libxmp/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/examples/Makefile -------------------------------------------------------------------------------- /libxmp/examples/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/examples/alsa.c -------------------------------------------------------------------------------- /libxmp/examples/showinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/examples/showinfo.c -------------------------------------------------------------------------------- /libxmp/examples/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/examples/sound.h -------------------------------------------------------------------------------- /libxmp/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/include/Makefile -------------------------------------------------------------------------------- /libxmp/include/xmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/include/xmp.h -------------------------------------------------------------------------------- /libxmp/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/install-sh -------------------------------------------------------------------------------- /libxmp/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/jni/Android.mk -------------------------------------------------------------------------------- /libxmp/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/jni/Application.mk -------------------------------------------------------------------------------- /libxmp/libxmp.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/libxmp.map -------------------------------------------------------------------------------- /libxmp/libxmp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/libxmp.pc.in -------------------------------------------------------------------------------- /libxmp/lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/CMakeLists.txt -------------------------------------------------------------------------------- /libxmp/lite/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/Changelog -------------------------------------------------------------------------------- /libxmp/lite/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/Makefile.in.in -------------------------------------------------------------------------------- /libxmp/lite/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/Makefile.os2 -------------------------------------------------------------------------------- /libxmp/lite/Makefile.vc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/Makefile.vc.in -------------------------------------------------------------------------------- /libxmp/lite/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/Makefile.w32 -------------------------------------------------------------------------------- /libxmp/lite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/README -------------------------------------------------------------------------------- /libxmp/lite/cmake/libxmp-sources.cmake.in: -------------------------------------------------------------------------------- 1 | set(LIBXMP_SRC_LIST @SRCS@) 2 | -------------------------------------------------------------------------------- /libxmp/lite/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/configure.ac -------------------------------------------------------------------------------- /libxmp/lite/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/jni/Android.mk -------------------------------------------------------------------------------- /libxmp/lite/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/src/Makefile -------------------------------------------------------------------------------- /libxmp/lite/src/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/src/format.c -------------------------------------------------------------------------------- /libxmp/lite/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/test/Makefile -------------------------------------------------------------------------------- /libxmp/lite/watcom.mif.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/lite/watcom.mif.in -------------------------------------------------------------------------------- /libxmp/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/m4/Makefile -------------------------------------------------------------------------------- /libxmp/m4/ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/m4/ld.m4 -------------------------------------------------------------------------------- /libxmp/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/Makefile -------------------------------------------------------------------------------- /libxmp/src/callbackio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/callbackio.h -------------------------------------------------------------------------------- /libxmp/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/common.h -------------------------------------------------------------------------------- /libxmp/src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/control.c -------------------------------------------------------------------------------- /libxmp/src/dataio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/dataio.c -------------------------------------------------------------------------------- /libxmp/src/depackers/muse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/depackers/muse.c -------------------------------------------------------------------------------- /libxmp/src/depackers/unxz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/depackers/unxz.c -------------------------------------------------------------------------------- /libxmp/src/depackers/xfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/depackers/xfd.c -------------------------------------------------------------------------------- /libxmp/src/depackers/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/depackers/xz.h -------------------------------------------------------------------------------- /libxmp/src/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/effects.c -------------------------------------------------------------------------------- /libxmp/src/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/effects.h -------------------------------------------------------------------------------- /libxmp/src/extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/extras.c -------------------------------------------------------------------------------- /libxmp/src/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/extras.h -------------------------------------------------------------------------------- /libxmp/src/far_extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/far_extras.c -------------------------------------------------------------------------------- /libxmp/src/far_extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/far_extras.h -------------------------------------------------------------------------------- /libxmp/src/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/filetype.c -------------------------------------------------------------------------------- /libxmp/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/filter.c -------------------------------------------------------------------------------- /libxmp/src/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/fmopl.c -------------------------------------------------------------------------------- /libxmp/src/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/fmopl.h -------------------------------------------------------------------------------- /libxmp/src/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/format.c -------------------------------------------------------------------------------- /libxmp/src/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/format.h -------------------------------------------------------------------------------- /libxmp/src/hio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/hio.c -------------------------------------------------------------------------------- /libxmp/src/hio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/hio.h -------------------------------------------------------------------------------- /libxmp/src/hmn_extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/hmn_extras.c -------------------------------------------------------------------------------- /libxmp/src/hmn_extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/hmn_extras.h -------------------------------------------------------------------------------- /libxmp/src/lfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/lfo.c -------------------------------------------------------------------------------- /libxmp/src/lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/lfo.h -------------------------------------------------------------------------------- /libxmp/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/list.h -------------------------------------------------------------------------------- /libxmp/src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/load.c -------------------------------------------------------------------------------- /libxmp/src/load_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/load_helpers.c -------------------------------------------------------------------------------- /libxmp/src/loaders/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/Makefile -------------------------------------------------------------------------------- /libxmp/src/loaders/asif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/asif.c -------------------------------------------------------------------------------- /libxmp/src/loaders/asif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/asif.h -------------------------------------------------------------------------------- /libxmp/src/loaders/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/common.c -------------------------------------------------------------------------------- /libxmp/src/loaders/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/iff.c -------------------------------------------------------------------------------- /libxmp/src/loaders/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/iff.h -------------------------------------------------------------------------------- /libxmp/src/loaders/it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/it.h -------------------------------------------------------------------------------- /libxmp/src/loaders/itsex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/itsex.c -------------------------------------------------------------------------------- /libxmp/src/loaders/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/loader.h -------------------------------------------------------------------------------- /libxmp/src/loaders/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/lzw.c -------------------------------------------------------------------------------- /libxmp/src/loaders/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/lzw.h -------------------------------------------------------------------------------- /libxmp/src/loaders/med.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/med.h -------------------------------------------------------------------------------- /libxmp/src/loaders/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/mod.h -------------------------------------------------------------------------------- /libxmp/src/loaders/s3m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/s3m.h -------------------------------------------------------------------------------- /libxmp/src/loaders/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/sample.c -------------------------------------------------------------------------------- /libxmp/src/loaders/vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/vorbis.c -------------------------------------------------------------------------------- /libxmp/src/loaders/vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/vorbis.h -------------------------------------------------------------------------------- /libxmp/src/loaders/xm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/loaders/xm.h -------------------------------------------------------------------------------- /libxmp/src/lutgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/lutgen.c -------------------------------------------------------------------------------- /libxmp/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/md5.c -------------------------------------------------------------------------------- /libxmp/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/md5.h -------------------------------------------------------------------------------- /libxmp/src/mdataio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/mdataio.h -------------------------------------------------------------------------------- /libxmp/src/med_extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/med_extras.c -------------------------------------------------------------------------------- /libxmp/src/med_extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/med_extras.h -------------------------------------------------------------------------------- /libxmp/src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/memio.c -------------------------------------------------------------------------------- /libxmp/src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/memio.h -------------------------------------------------------------------------------- /libxmp/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/misc.c -------------------------------------------------------------------------------- /libxmp/src/mix_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/mix_all.c -------------------------------------------------------------------------------- /libxmp/src/mix_paula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/mix_paula.c -------------------------------------------------------------------------------- /libxmp/src/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/mixer.c -------------------------------------------------------------------------------- /libxmp/src/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/mixer.h -------------------------------------------------------------------------------- /libxmp/src/mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/mkstemp.c -------------------------------------------------------------------------------- /libxmp/src/paula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/paula.h -------------------------------------------------------------------------------- /libxmp/src/period.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/period.c -------------------------------------------------------------------------------- /libxmp/src/period.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/period.h -------------------------------------------------------------------------------- /libxmp/src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/player.c -------------------------------------------------------------------------------- /libxmp/src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/player.h -------------------------------------------------------------------------------- /libxmp/src/precomp_blep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/precomp_blep.h -------------------------------------------------------------------------------- /libxmp/src/precomp_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/precomp_lut.h -------------------------------------------------------------------------------- /libxmp/src/read_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/read_event.c -------------------------------------------------------------------------------- /libxmp/src/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/scan.c -------------------------------------------------------------------------------- /libxmp/src/smix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/smix.c -------------------------------------------------------------------------------- /libxmp/src/tempfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/tempfile.c -------------------------------------------------------------------------------- /libxmp/src/tempfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/tempfile.h -------------------------------------------------------------------------------- /libxmp/src/virtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/virtual.c -------------------------------------------------------------------------------- /libxmp/src/virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/virtual.h -------------------------------------------------------------------------------- /libxmp/src/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/src/win32.c -------------------------------------------------------------------------------- /libxmp/test-dev/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/Makefile.in -------------------------------------------------------------------------------- /libxmp/test-dev/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/Makefile.vc -------------------------------------------------------------------------------- /libxmp/test-dev/data/038984: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/data/038984 -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/load_abk_truncated.abk: -------------------------------------------------------------------------------- 1 | AmBk -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/load_amf_truncated2.amf: -------------------------------------------------------------------------------- 1 | AMF -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/load_dbm_truncated2.dbm: -------------------------------------------------------------------------------- 1 | DBM0 -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/load_mdl_truncated2.mdl: -------------------------------------------------------------------------------- 1 | DMDL -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/load_mmd0_truncated.med: -------------------------------------------------------------------------------- 1 | MMD0 -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/prowizard_di_invalid_offsets: -------------------------------------------------------------------------------- 1 | c`l`& fQ  -------------------------------------------------------------------------------- /libxmp/test-dev/data/f/prowizard_di_invalid_offsets3: -------------------------------------------------------------------------------- 1 | c`d`"& fQ@ -------------------------------------------------------------------------------- /libxmp/test-dev/data/xzdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/data/xzdata -------------------------------------------------------------------------------- /libxmp/test-dev/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/main.c -------------------------------------------------------------------------------- /libxmp/test-dev/openmpt/xm/DelayCombination.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libxmp/test-dev/openmpt/xm/PanMemory.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libxmp/test-dev/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/test.h -------------------------------------------------------------------------------- /libxmp/test-dev/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test-dev/util.c -------------------------------------------------------------------------------- /libxmp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test/CMakeLists.txt -------------------------------------------------------------------------------- /libxmp/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test/Makefile -------------------------------------------------------------------------------- /libxmp/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test/test.c -------------------------------------------------------------------------------- /libxmp/test/test.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test/test.it -------------------------------------------------------------------------------- /libxmp/test/test.itz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/test/test.itz -------------------------------------------------------------------------------- /libxmp/vc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/vc/Makefile -------------------------------------------------------------------------------- /libxmp/vc/libxmp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/vc/libxmp.sln -------------------------------------------------------------------------------- /libxmp/vc/libxmp.vcproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/vc/libxmp.vcproj.in -------------------------------------------------------------------------------- /libxmp/watcom.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/watcom.mif -------------------------------------------------------------------------------- /libxmp/watcom.mif.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/libxmp/watcom.mif.in -------------------------------------------------------------------------------- /mdxmini/.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | mdxplay 3 | obj 4 | -------------------------------------------------------------------------------- /mdxmini/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/AUTHORS -------------------------------------------------------------------------------- /mdxmini/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/CMakeLists.txt -------------------------------------------------------------------------------- /mdxmini/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/COPYING -------------------------------------------------------------------------------- /mdxmini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/Makefile -------------------------------------------------------------------------------- /mdxmini/Makefile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/Makefile.lib -------------------------------------------------------------------------------- /mdxmini/Makefile.psplib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/Makefile.psplib -------------------------------------------------------------------------------- /mdxmini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/README.md -------------------------------------------------------------------------------- /mdxmini/fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/fade.h -------------------------------------------------------------------------------- /mdxmini/mak/general.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/mak/general.mak -------------------------------------------------------------------------------- /mdxmini/mak/lib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/mak/lib.mak -------------------------------------------------------------------------------- /mdxmini/mak/psp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/mak/psp.mak -------------------------------------------------------------------------------- /mdxmini/mak/w32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/mak/w32.mak -------------------------------------------------------------------------------- /mdxmini/mdxmini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/mdxmini.txt -------------------------------------------------------------------------------- /mdxmini/sdlplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/sdlplay.c -------------------------------------------------------------------------------- /mdxmini/src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/Doxyfile -------------------------------------------------------------------------------- /mdxmini/src/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/class.h -------------------------------------------------------------------------------- /mdxmini/src/mdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdx.h -------------------------------------------------------------------------------- /mdxmini/src/mdx2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdx2151.c -------------------------------------------------------------------------------- /mdxmini/src/mdx2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdx2151.h -------------------------------------------------------------------------------- /mdxmini/src/mdxfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdxfile.c -------------------------------------------------------------------------------- /mdxmini/src/mdxmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdxmini.c -------------------------------------------------------------------------------- /mdxmini/src/mdxmini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdxmini.h -------------------------------------------------------------------------------- /mdxmini/src/mdxmml_ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/mdxmml_ym2151.c -------------------------------------------------------------------------------- /mdxmini/src/nlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/nlg.c -------------------------------------------------------------------------------- /mdxmini/src/nlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/nlg.h -------------------------------------------------------------------------------- /mdxmini/src/pcm8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/pcm8.c -------------------------------------------------------------------------------- /mdxmini/src/pcm8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/pcm8.h -------------------------------------------------------------------------------- /mdxmini/src/pdxfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/pdxfile.c -------------------------------------------------------------------------------- /mdxmini/src/sin_tab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/sin_tab.dat -------------------------------------------------------------------------------- /mdxmini/src/tl_tab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/tl_tab.dat -------------------------------------------------------------------------------- /mdxmini/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/version.h -------------------------------------------------------------------------------- /mdxmini/src/ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/ym2151.c -------------------------------------------------------------------------------- /mdxmini/src/ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/src/ym2151.h -------------------------------------------------------------------------------- /mdxmini/wavwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/mdxmini/wavwrite.h -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/package.json -------------------------------------------------------------------------------- /psflib/.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | *.o 3 | Debug 4 | Release 5 | -------------------------------------------------------------------------------- /psflib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/CMakeLists.txt -------------------------------------------------------------------------------- /psflib/Emscripten.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/Emscripten.Makefile -------------------------------------------------------------------------------- /psflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/LICENSE -------------------------------------------------------------------------------- /psflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/Makefile -------------------------------------------------------------------------------- /psflib/psf2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/psf2fs.c -------------------------------------------------------------------------------- /psflib/psf2fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/psf2fs.h -------------------------------------------------------------------------------- /psflib/psflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/psflib.c -------------------------------------------------------------------------------- /psflib/psflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/psflib.h -------------------------------------------------------------------------------- /psflib/psflib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/psflib.pro -------------------------------------------------------------------------------- /psflib/psflib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/psflib/psflib.vcxproj -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/404.html -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | chiptune.app 2 | -------------------------------------------------------------------------------- /public/chip-player-js.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/chip-player-js.ico -------------------------------------------------------------------------------- /public/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/icon-16x16.png -------------------------------------------------------------------------------- /public/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/icon-64x64.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/soundfonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/public/soundfonts/README.md -------------------------------------------------------------------------------- /scripts/ResigTrie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/ResigTrie.js -------------------------------------------------------------------------------- /scripts/build-catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/build-catalog.js -------------------------------------------------------------------------------- /scripts/build-chip-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/build-chip-core.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/fix-n64-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/fix-n64-midi.js -------------------------------------------------------------------------------- /scripts/fixvgm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/fixvgm.js -------------------------------------------------------------------------------- /scripts/httpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/httpserver.py -------------------------------------------------------------------------------- /scripts/ns64-track-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/ns64-track-info.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/unzip-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/scripts/unzip-all.sh -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/server/index.js -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/LocalFilesManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/LocalFilesManager.js -------------------------------------------------------------------------------- /src/RequestCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/RequestCache.js -------------------------------------------------------------------------------- /src/Sequencer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/Sequencer.js -------------------------------------------------------------------------------- /src/Spectrogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/Spectrogram.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/AppFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/AppFooter.js -------------------------------------------------------------------------------- /src/components/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/AppHeader.js -------------------------------------------------------------------------------- /src/components/Browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/Browse.js -------------------------------------------------------------------------------- /src/components/Favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/Favorites.js -------------------------------------------------------------------------------- /src/components/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/Search.js -------------------------------------------------------------------------------- /src/components/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/Settings.js -------------------------------------------------------------------------------- /src/components/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/Slider.js -------------------------------------------------------------------------------- /src/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/components/Toast.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/effects/SubBass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/effects/SubBass.js -------------------------------------------------------------------------------- /src/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/fonts/LICENSE -------------------------------------------------------------------------------- /src/fonts/Tahoma.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/fonts/Tahoma.woff -------------------------------------------------------------------------------- /src/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/fonts/fonts.css -------------------------------------------------------------------------------- /src/fonts/mm-tahoma-8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/fonts/mm-tahoma-8px.ttf -------------------------------------------------------------------------------- /src/gm-patch-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/gm-patch-map.js -------------------------------------------------------------------------------- /src/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/back.png -------------------------------------------------------------------------------- /src/images/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/chip.png -------------------------------------------------------------------------------- /src/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/copy.png -------------------------------------------------------------------------------- /src/images/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/dice.png -------------------------------------------------------------------------------- /src/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/download.png -------------------------------------------------------------------------------- /src/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/folder.png -------------------------------------------------------------------------------- /src/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/forward.png -------------------------------------------------------------------------------- /src/images/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/icons.psd -------------------------------------------------------------------------------- /src/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/link.png -------------------------------------------------------------------------------- /src/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/next.png -------------------------------------------------------------------------------- /src/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/pause.png -------------------------------------------------------------------------------- /src/images/piano-keys.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/piano-keys.ai -------------------------------------------------------------------------------- /src/images/piano-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/piano-keys.png -------------------------------------------------------------------------------- /src/images/pin-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/pin-filled.png -------------------------------------------------------------------------------- /src/images/pin-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/pin-up.png -------------------------------------------------------------------------------- /src/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/play.png -------------------------------------------------------------------------------- /src/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/prev.png -------------------------------------------------------------------------------- /src/images/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/repeat.png -------------------------------------------------------------------------------- /src/images/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/shuffle.png -------------------------------------------------------------------------------- /src/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/trash.png -------------------------------------------------------------------------------- /src/images/winamp/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/winamp/back.png -------------------------------------------------------------------------------- /src/images/winamp/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/winamp/next.png -------------------------------------------------------------------------------- /src/images/winamp/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/winamp/pause.png -------------------------------------------------------------------------------- /src/images/winamp/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/winamp/play.png -------------------------------------------------------------------------------- /src/images/winamp/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/winamp/prev.png -------------------------------------------------------------------------------- /src/images/winamp/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/images/winamp/track.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/index.js -------------------------------------------------------------------------------- /src/players/GMEPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/GMEPlayer.js -------------------------------------------------------------------------------- /src/players/MDXPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/MDXPlayer.js -------------------------------------------------------------------------------- /src/players/MIDIPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/MIDIPlayer.js -------------------------------------------------------------------------------- /src/players/N64Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/N64Player.js -------------------------------------------------------------------------------- /src/players/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/Player.js -------------------------------------------------------------------------------- /src/players/V2MPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/V2MPlayer.js -------------------------------------------------------------------------------- /src/players/VGMPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/VGMPlayer.js -------------------------------------------------------------------------------- /src/players/XMPPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/players/XMPPlayer.js -------------------------------------------------------------------------------- /src/promisify-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/promisify-xhr.js -------------------------------------------------------------------------------- /src/showcqtbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/showcqtbar.c -------------------------------------------------------------------------------- /src/tinyplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/tinyplayer.c -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/util.js -------------------------------------------------------------------------------- /src/winamp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmontag/chip-player-js/HEAD/src/winamp.css --------------------------------------------------------------------------------