├── .appveyor.yml ├── .gitattributes ├── .github └── workflows │ ├── macos-ci.yml │ ├── ubuntu-ci.yml │ ├── windows-ci.yml │ └── windows-winmm-ci.yml ├── .gitignore ├── .semaphore └── semaphore.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 ├── checks │ └── cpp14.cpp ├── ci_windows_mingw_toolchain_x32.cmake ├── ci_windows_mingw_toolchain_x64.cmake ├── ci_windows_winmm_mingw_toolchain_vanilla.cmake ├── ci_windows_winmm_mingw_toolchain_x32.cmake ├── ci_windows_winmm_mingw_toolchain_x64.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 │ └── winmm │ ├── install-x64.bat │ ├── install-x86.bat │ ├── uninstall-x64.bat │ └── uninstall-x86.bat ├── examples ├── golang-mid2wav │ ├── .gitignore │ ├── README.txt │ └── mid2wav.go ├── python-alsa │ ├── ReadMe.txt │ └── playmidi.py ├── python-pyaudio │ └── playmidi.py ├── sdl2_audio │ ├── CMakeLists.txt │ └── sdl2_sample.c └── sdl2_mixer │ ├── CMakeLists.txt │ └── sdl2_mixer_example.c ├── fm_banks ├── LICENSE-AIL2.txt ├── LICENSE-DMXOPL.txt ├── LICENSE-FMSynth.txt ├── LICENSE-TheFatMan.txt ├── adldata-cache.dat ├── ail │ ├── AdvancedCivilization.opl │ ├── BubbleBobble.opl │ ├── DeathGate.opl │ ├── Discworld.opl │ ├── FIFAInternationalSoccer.opl │ ├── Guilty.opl │ ├── LittleBigAdventure.opl │ ├── MonopolyDeluxe.ad │ ├── MonopolyDeluxe.wopl │ ├── NationalHockeyLeaguePA.opl │ ├── StarshipInvasion.opl │ ├── SuperStreetFighter2.opl │ ├── Syndicate.opl │ ├── SyndicateWars.opl │ ├── SystemShock.opl │ ├── TerraNovaStrikeForceCenturi.opl │ ├── ThemeHospital.opl │ ├── UltimateSoccerManager.opl │ ├── Unused │ │ ├── Heroes.ad │ │ ├── MegaManX.ad │ │ ├── Putt-Putt-2.ad │ │ └── Putt-Putt-2.opl │ ├── dupes │ │ └── SimonTheSorcerer2.AD │ ├── 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 │ │ ├── HeroesOfMightAndMagic2.opl │ │ ├── InteritTheEarth.opl │ │ ├── InteritTheEarth2.opl │ │ ├── JaggedAlliance.opl │ │ ├── KasparovGambit.opl │ │ ├── MagicCarpet2.opl │ │ ├── ReturnToZork.opl │ │ ├── UltimaUnderworld2.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 │ ├── fmsynth_internal_drum.ibk │ ├── fmsynth_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 │ │ ├── IBK_License.txt │ │ ├── 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 │ ├── license.txt │ ├── mt_fm.ibk │ ├── nitemare_3d.ibk │ ├── soccer-genmidi.ibk │ └── soccer-percs.ibk ├── junglevision │ ├── fat2.op3 │ ├── fat4.op3 │ ├── jv_2op.op3 │ ├── unused │ │ ├── 2x2.op3 │ │ ├── 2x2.opl │ │ ├── fat2_modded.op3 │ │ ├── fat4-fixed.opl │ │ ├── fat4_old.op3 │ │ ├── fat4_probe.op3 │ │ ├── gmoconel.tmb │ │ ├── gmopl_wohl_mod.tmb │ │ └── wallace.tmb │ └── wallace.op3 ├── list-of-banks.txt ├── misc_files │ ├── bisqwit.adlraw │ └── cartooners-adlib-decrypted.dat ├── tmb_files │ ├── apogee_duke3d99.tmb │ ├── apogee_xenophage.tmb │ ├── 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 │ ├── Unused │ │ ├── Apogee-IMF-90-old.wopl │ │ └── lostvik.wopl │ ├── Wohlstand's-modded-FatMan.wopl │ ├── fatman-2op.wopl │ ├── fatman-4op.wopl │ ├── fatman-readme.txt │ └── msadlib.wopl ├── ymf262.odt └── ymf262.pdf ├── fm_banks_new ├── Apogee-IMF-90.woplx ├── DMXOPL3-by-sneakernets-GS.woplx ├── GM-By-J.A.Nguyen-and-Wohlstand.woplx ├── LICENSE-AIL2.txt ├── LICENSE-DMXOPL.txt ├── LICENSE-FMSynth.txt ├── LICENSE-IMF90.txt ├── LICENSE-TheFatMan.txt ├── ail │ ├── ail-realm.woplx │ ├── fatman-2op-ail-default.woplx │ ├── fatman-2op-ail-discworld.woplx │ ├── fatman-2op-ail-farm.woplx │ ├── fatman-2op-ail-soccer.woplx │ ├── fatman-2op-ail-starship.woplx │ ├── fatman-2op-ail-warcraft2.woplx │ ├── fatman-4op-ail-farm.woplx │ ├── fatman-4op-ail-guilty.woplx │ ├── fatman-4op-ail-little.woplx │ ├── fatman-4op-ail-master-o.woplx │ ├── fatman-4op-ail-master-s.woplx │ ├── fatman-4op-ail-master.woplx │ ├── fatman-4op-ail-shock.woplx │ ├── fatman-4op-ail-street.woplx │ ├── fatman-4op-ail-terra.woplx │ ├── fatman-mt32-ail-earth1.woplx │ ├── fatman-mt32-ail-earth2.woplx │ ├── fatman-mt32-ail-zork.woplx │ ├── fatman-mt32.woplx │ ├── miles-gm-hospital.woplx │ ├── miles-gm-monopoly.woplx │ ├── miles-gm-trader.woplx │ ├── miles-gm-warcraft.woplx │ ├── miles-mt32-bards.woplx │ ├── miles-mt32-bucks.woplx │ ├── miles-mt32-heroes.woplx │ ├── miles-mt32-jagged.woplx │ ├── miles-mt32-magic-carpet-2.woplx │ ├── miles-mt32-sample.woplx │ ├── miles-mt32-soccerman.woplx │ ├── miles-mt32-syndicate.woplx │ ├── miles-mt32-synwars.woplx │ └── miles-mt32-underworld.woplx ├── apogee │ ├── fatman-2op-apogee-default.woplx │ ├── fatman-2op-duke.woplx │ ├── fatman-2op-nam.woplx │ ├── fatman-2op-warrior.woplx │ └── rott.woplx ├── bisqwit.woplx ├── fatman-2op-mod-by-Wohlstand.woplx ├── fatman-2op.woplx ├── fatman-4op.woplx ├── greyzone │ ├── README.txt │ ├── ail-Eric-Heberling-AdvCivil.woplx │ ├── ail-Eric-Heberling-Death-Gate.woplx │ ├── ail-Eric-Heberling-Nemesis.woplx │ ├── ail-battle-chess-4000.woplx │ ├── ail-caesar2.woplx │ ├── ail-lost-vikings.woplx │ ├── ail-megapatch-hockey.woplx │ ├── ail-megapatch-probe-ent.woplx │ ├── ail-when-two-worlds-war.woplx │ ├── apogee-megapatch-blood.woplx │ ├── dmx-Bobby-Prince-v1.woplx │ ├── dmx-Bobby-Prince-v2.woplx │ ├── dmx-Scott-Host.woplx │ ├── dmx-Strife.woplx │ ├── dmx-default.woplx │ ├── hmi-megapatch-aces-of-the-deep.woplx │ ├── hmi-megapatch-by-loudmouth.woplx │ ├── hmi-megapatch-earthsiege.woplx │ └── ms-adlib.woplx ├── hmi │ ├── fatman-2op-descent.woplx │ ├── fatman-2op-hmi-anvil-of-dawn.woplx │ ├── fatman-2op-hmi-normality.woplx │ ├── fatman-2op-non-gm-descent-ham.woplx │ ├── fatman-2op-non-gm-descent-int.woplx │ ├── fatman-2op-non-gm-descent-rick.woplx │ ├── fatman-2op-non-gm-descent2.woplx │ ├── hmi-miles-mt32-park.woplx │ └── hmi-shattered-steel.woplx ├── junglevision-2op.woplx └── oconnell │ ├── fmsynth-gm-cyberpuck.woplx │ ├── fmsynth-gm-wallace.woplx │ ├── fmsynth-gm.woplx │ ├── mt32-fm-sorcerer.woplx │ └── soccer.woplx ├── include └── adlmidi.h ├── libADLMIDI.pc.in ├── libADLMIDIConfig.cmake.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-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 │ ├── .gitattributes │ ├── LICENSE.txt │ ├── README.md │ ├── chipset.cmake │ ├── chipset.pri │ ├── common │ │ ├── mutex.hpp │ │ └── ptr.hpp │ ├── dos_hw_opl.cpp │ ├── dos_hw_opl.h │ ├── dosbox │ │ ├── dbopl.cpp │ │ └── dbopl.h │ ├── dosbox_opl3.cpp │ ├── dosbox_opl3.h │ ├── esfmu │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ └── logo.png │ │ ├── esfm.c │ │ ├── esfm.h │ │ └── esfm_registers.c │ ├── esfmu_opl3.cpp │ ├── esfmu_opl3.h │ ├── java │ │ └── JavaOPL3.hpp │ ├── java_opl3.cpp │ ├── java_opl3.h │ ├── mame │ │ ├── mame_fmopl.cpp │ │ └── opl.h │ ├── mame_opl2.cpp │ ├── mame_opl2.h │ ├── nuked │ │ ├── LICENSE │ │ ├── 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 │ │ ├── old │ │ │ ├── LICENSE.txt │ │ │ ├── README.old │ │ │ ├── opal-orig.hpp │ │ │ └── opal-pan.diff │ │ ├── opal.c │ │ └── opal.h │ ├── opal_opl3.cpp │ ├── opal_opl3.h │ ├── opl_chip_base.h │ ├── opl_chip_base.tcc │ ├── opl_serial_misc.h │ ├── opl_serial_port.cpp │ ├── opl_serial_port.h │ ├── opl_serial_port.pri │ ├── sync_from.sh │ ├── sync_to.sh │ ├── win9x_opl_proxy.cmake │ ├── win9x_opl_proxy.cpp │ ├── win9x_opl_proxy.h │ ├── win9x_opl_proxy.pri │ ├── ym3812_lle.cpp │ ├── ym3812_lle.h │ ├── ym3812_lle │ │ ├── nopl2.c │ │ ├── nopl2.h │ │ ├── nuked_fmopl2.c │ │ └── nuked_fmopl2.h │ ├── ymf262_lle.cpp │ ├── ymf262_lle.h │ ├── ymf262_lle │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── nopl3.c │ │ ├── nopl3.h │ │ ├── nuked_fmopl3.c │ │ └── nuked_fmopl3.h │ ├── ymfm │ │ ├── README.md │ │ ├── ymfm.h │ │ ├── ymfm_adpcm.cpp │ │ ├── ymfm_adpcm.h │ │ ├── ymfm_fm.h │ │ ├── ymfm_fm.ipp │ │ ├── ymfm_misc.cpp │ │ ├── ymfm_misc.h │ │ ├── ymfm_opl.cpp │ │ ├── ymfm_opl.h │ │ ├── ymfm_pcm.cpp │ │ ├── ymfm_pcm.h │ │ ├── ymfm_ssg.cpp │ │ └── ymfm_ssg.h │ ├── ymfm_opl2.cpp │ ├── ymfm_opl2.h │ ├── ymfm_opl3.cpp │ └── ymfm_opl3.h ├── inst_db.cpp ├── midiseq │ ├── LICENSE.txt │ ├── file_reader.hpp │ ├── impl │ │ ├── common.hpp │ │ ├── cvt_xmi2mid.hpp │ │ ├── databank_impl.hpp │ │ ├── debug_songdump.hpp │ │ ├── durated_note_impl.hpp │ │ ├── err_string_impl.hpp │ │ ├── io_impl.hpp │ │ ├── load_music_impl.hpp │ │ ├── loop_impl.hpp │ │ ├── mididata_impl.hpp │ │ ├── miditrack_impl.hpp │ │ ├── platform_impl.hpp │ │ ├── process_impl.hpp │ │ ├── read_cmf_impl.hpp │ │ ├── read_gmf_impl.hpp │ │ ├── read_hmi_impl.hpp │ │ ├── read_imf_impl.hpp │ │ ├── read_klm_impl.hpp │ │ ├── read_mus_impl.hpp │ │ ├── read_rsxx_impl.hpp │ │ ├── read_smf_impl.hpp │ │ ├── read_xmi_impl.hpp │ │ └── tempo_fraction.hpp │ ├── midi_sequencer.h │ ├── midi_sequencer.hpp │ └── midi_sequencer_impl.hpp ├── models │ ├── LICENSE.txt │ ├── model_ail.c │ ├── model_apogee.c │ ├── model_dmx.c │ ├── model_generic.c │ ├── model_hmi_sos.c │ ├── model_msadlib.c │ ├── model_oconnell.c │ ├── model_win9x.c │ ├── opl_models.cmake │ ├── opl_models.h │ └── util │ │ ├── README.txt │ │ ├── freq-opl.c │ │ └── oplbrightness.c ├── 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 ├── common ├── utf8main.cmake ├── utf8main.h └── utf8main_win32.cpp ├── dumpbank ├── CMakeLists.txt └── dumpbank.cpp ├── dumpmiles ├── CMakeLists.txt └── dumpmiles.cpp ├── dumpwopl ├── CMakeLists.txt └── dumpwopl.c ├── 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 │ └── load_woplx.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 ├── mididump ├── CMakeLists.txt └── mididump.cpp ├── midiplay ├── CMakeLists.txt ├── adlmidiplay.cpp ├── audio.h ├── audio_sdl.c ├── audio_winmm.c ├── dos_tman.cpp ├── dos_tman.h ├── wave_writer.c └── wave_writer.h ├── mus2mid ├── CMakeLists.txt ├── cvt_mus2mid.hpp └── 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 /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/macos-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.github/workflows/macos-ci.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.github/workflows/ubuntu-ci.yml -------------------------------------------------------------------------------- /.github/workflows/windows-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.github/workflows/windows-ci.yml -------------------------------------------------------------------------------- /.github/workflows/windows-winmm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.github/workflows/windows-winmm-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.gitignore -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.GPL-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/LICENSE.GPL-3.txt -------------------------------------------------------------------------------- /LICENSE.LGPL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/LICENSE.LGPL-2.1.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | libs/ 3 | -------------------------------------------------------------------------------- /android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/android/Android.mk -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/android/jni/Android.mk -------------------------------------------------------------------------------- /android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/android/jni/Application.mk -------------------------------------------------------------------------------- /banks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/banks.ini -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /cmake/FindLIBVLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/FindLIBVLC.cmake -------------------------------------------------------------------------------- /cmake/checks/cpp14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/checks/cpp14.cpp -------------------------------------------------------------------------------- /cmake/ci_windows_mingw_toolchain_x32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/ci_windows_mingw_toolchain_x32.cmake -------------------------------------------------------------------------------- /cmake/ci_windows_mingw_toolchain_x64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/ci_windows_mingw_toolchain_x64.cmake -------------------------------------------------------------------------------- /cmake/ci_windows_winmm_mingw_toolchain_vanilla.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/ci_windows_winmm_mingw_toolchain_vanilla.cmake -------------------------------------------------------------------------------- /cmake/ci_windows_winmm_mingw_toolchain_x32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/ci_windows_winmm_mingw_toolchain_x32.cmake -------------------------------------------------------------------------------- /cmake/ci_windows_winmm_mingw_toolchain_x64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/ci_windows_winmm_mingw_toolchain_x64.cmake -------------------------------------------------------------------------------- /cmake/djgpp/djgpp-cmake-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/djgpp/djgpp-cmake-core.sh -------------------------------------------------------------------------------- /cmake/djgpp/djgpp-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/djgpp/djgpp-cmake.sh -------------------------------------------------------------------------------- /cmake/djgpp/toolchain-djgpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/djgpp/toolchain-djgpp.cmake -------------------------------------------------------------------------------- /cmake/mingw-dlls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/mingw-dlls.cmake -------------------------------------------------------------------------------- /cmake/openwattcom-dos/custom-h/mymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom-dos/custom-h/mymap.h -------------------------------------------------------------------------------- /cmake/openwattcom-dos/custom-h/myset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom-dos/custom-h/myset.h -------------------------------------------------------------------------------- /cmake/openwattcom-dos/ow-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom-dos/ow-cmake.sh -------------------------------------------------------------------------------- /cmake/openwattcom-dos/toolchain-ow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom-dos/toolchain-ow.cmake -------------------------------------------------------------------------------- /cmake/openwattcom/Linux-OpenWatcom-C.cmake: -------------------------------------------------------------------------------- 1 | include(Platform/Windows-OpenWatcom) 2 | -------------------------------------------------------------------------------- /cmake/openwattcom/Linux-OpenWatcom-CXX.cmake: -------------------------------------------------------------------------------- 1 | include(Platform/Windows-OpenWatcom) 2 | -------------------------------------------------------------------------------- /cmake/openwattcom/Linux-OpenWatcom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom/Linux-OpenWatcom.cmake -------------------------------------------------------------------------------- /cmake/openwattcom/ow-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom/ow-cmake.sh -------------------------------------------------------------------------------- /cmake/openwattcom/toolchain-ow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/openwattcom/toolchain-ow.cmake -------------------------------------------------------------------------------- /cmake/win-ci/lib-sdk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/lib-sdk.cmd -------------------------------------------------------------------------------- /cmake/win-ci/vlc-plugin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/vlc-plugin.cmd -------------------------------------------------------------------------------- /cmake/win-ci/winmm-drivers.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/winmm-drivers.cmd -------------------------------------------------------------------------------- /cmake/win-ci/winmm/install-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/winmm/install-x64.bat -------------------------------------------------------------------------------- /cmake/win-ci/winmm/install-x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/winmm/install-x86.bat -------------------------------------------------------------------------------- /cmake/win-ci/winmm/uninstall-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/winmm/uninstall-x64.bat -------------------------------------------------------------------------------- /cmake/win-ci/winmm/uninstall-x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/cmake/win-ci/winmm/uninstall-x86.bat -------------------------------------------------------------------------------- /examples/golang-mid2wav/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/golang-mid2wav/.gitignore -------------------------------------------------------------------------------- /examples/golang-mid2wav/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/golang-mid2wav/README.txt -------------------------------------------------------------------------------- /examples/golang-mid2wav/mid2wav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/golang-mid2wav/mid2wav.go -------------------------------------------------------------------------------- /examples/python-alsa/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/python-alsa/ReadMe.txt -------------------------------------------------------------------------------- /examples/python-alsa/playmidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/python-alsa/playmidi.py -------------------------------------------------------------------------------- /examples/python-pyaudio/playmidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/python-pyaudio/playmidi.py -------------------------------------------------------------------------------- /examples/sdl2_audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/sdl2_audio/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sdl2_audio/sdl2_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/sdl2_audio/sdl2_sample.c -------------------------------------------------------------------------------- /examples/sdl2_mixer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/sdl2_mixer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sdl2_mixer/sdl2_mixer_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/examples/sdl2_mixer/sdl2_mixer_example.c -------------------------------------------------------------------------------- /fm_banks/LICENSE-AIL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/LICENSE-AIL2.txt -------------------------------------------------------------------------------- /fm_banks/LICENSE-DMXOPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/LICENSE-DMXOPL.txt -------------------------------------------------------------------------------- /fm_banks/LICENSE-FMSynth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/LICENSE-FMSynth.txt -------------------------------------------------------------------------------- /fm_banks/LICENSE-TheFatMan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/LICENSE-TheFatMan.txt -------------------------------------------------------------------------------- /fm_banks/adldata-cache.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/adldata-cache.dat -------------------------------------------------------------------------------- /fm_banks/ail/AdvancedCivilization.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/AdvancedCivilization.opl -------------------------------------------------------------------------------- /fm_banks/ail/BubbleBobble.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/BubbleBobble.opl -------------------------------------------------------------------------------- /fm_banks/ail/DeathGate.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/DeathGate.opl -------------------------------------------------------------------------------- /fm_banks/ail/Discworld.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Discworld.opl -------------------------------------------------------------------------------- /fm_banks/ail/FIFAInternationalSoccer.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/FIFAInternationalSoccer.opl -------------------------------------------------------------------------------- /fm_banks/ail/Guilty.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Guilty.opl -------------------------------------------------------------------------------- /fm_banks/ail/LittleBigAdventure.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/LittleBigAdventure.opl -------------------------------------------------------------------------------- /fm_banks/ail/MonopolyDeluxe.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/MonopolyDeluxe.ad -------------------------------------------------------------------------------- /fm_banks/ail/MonopolyDeluxe.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/MonopolyDeluxe.wopl -------------------------------------------------------------------------------- /fm_banks/ail/NationalHockeyLeaguePA.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/NationalHockeyLeaguePA.opl -------------------------------------------------------------------------------- /fm_banks/ail/StarshipInvasion.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/StarshipInvasion.opl -------------------------------------------------------------------------------- /fm_banks/ail/SuperStreetFighter2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/SuperStreetFighter2.opl -------------------------------------------------------------------------------- /fm_banks/ail/Syndicate.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Syndicate.opl -------------------------------------------------------------------------------- /fm_banks/ail/SyndicateWars.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/SyndicateWars.opl -------------------------------------------------------------------------------- /fm_banks/ail/SystemShock.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/SystemShock.opl -------------------------------------------------------------------------------- /fm_banks/ail/TerraNovaStrikeForceCenturi.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/TerraNovaStrikeForceCenturi.opl -------------------------------------------------------------------------------- /fm_banks/ail/ThemeHospital.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/ThemeHospital.opl -------------------------------------------------------------------------------- /fm_banks/ail/UltimateSoccerManager.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/UltimateSoccerManager.opl -------------------------------------------------------------------------------- /fm_banks/ail/Unused/Heroes.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Unused/Heroes.ad -------------------------------------------------------------------------------- /fm_banks/ail/Unused/MegaManX.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Unused/MegaManX.ad -------------------------------------------------------------------------------- /fm_banks/ail/Unused/Putt-Putt-2.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Unused/Putt-Putt-2.ad -------------------------------------------------------------------------------- /fm_banks/ail/Unused/Putt-Putt-2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/Unused/Putt-Putt-2.opl -------------------------------------------------------------------------------- /fm_banks/ail/dupes/SimonTheSorcerer2.AD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/dupes/SimonTheSorcerer2.AD -------------------------------------------------------------------------------- /fm_banks/ail/master_of_magic.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/master_of_magic.wopl -------------------------------------------------------------------------------- /fm_banks/ail/master_of_magic_orchestral.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/master_of_magic_orchestral.opl -------------------------------------------------------------------------------- /fm_banks/ail/master_of_magic_standard.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/master_of_magic_standard.opl -------------------------------------------------------------------------------- /fm_banks/ail/miss-inst/BardsTaleConstruction.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/miss-inst/BardsTaleConstruction.opl -------------------------------------------------------------------------------- /fm_banks/ail/miss-inst/Caesar2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/miss-inst/Caesar2.opl -------------------------------------------------------------------------------- /fm_banks/ail/miss-inst/HighSeasTrader.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/miss-inst/HighSeasTrader.opl -------------------------------------------------------------------------------- /fm_banks/ail/miss-inst/LordsOfTheRealm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/miss-inst/LordsOfTheRealm.opl -------------------------------------------------------------------------------- /fm_banks/ail/miss-inst/WhenTwoWorldsWar.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/miss-inst/WhenTwoWorldsWar.opl -------------------------------------------------------------------------------- /fm_banks/ail/nemesis.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/nemesis.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/AirBucks.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/AirBucks.ad -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/BattleChess4000-2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/BattleChess4000-2.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/BattleChess4000-dupe.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/BattleChess4000-dupe.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/BattleChess4000.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/BattleChess4000.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/HeroesOfMightAndMagic2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/HeroesOfMightAndMagic2.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/InteritTheEarth.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/InteritTheEarth.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/InteritTheEarth2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/InteritTheEarth2.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/JaggedAlliance.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/JaggedAlliance.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/KasparovGambit.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/KasparovGambit.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/MagicCarpet2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/MagicCarpet2.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/ReturnToZork.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/ReturnToZork.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/UltimaUnderworld2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/UltimaUnderworld2.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/lost-vikings.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/lost-vikings.opl -------------------------------------------------------------------------------- /fm_banks/ail/non-gm/warcraft1.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/non-gm/warcraft1.opl -------------------------------------------------------------------------------- /fm_banks/ail/simfarm.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/simfarm.ad -------------------------------------------------------------------------------- /fm_banks/ail/simfarm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/simfarm.opl -------------------------------------------------------------------------------- /fm_banks/ail/star_control_3.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/star_control_3.opl -------------------------------------------------------------------------------- /fm_banks/ail/warcraft2.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ail/warcraft2.ad -------------------------------------------------------------------------------- /fm_banks/bnk_files/grassman1.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/bnk_files/grassman1.bnk -------------------------------------------------------------------------------- /fm_banks/bnk_files/grassman2.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/bnk_files/grassman2.bnk -------------------------------------------------------------------------------- /fm_banks/bnk_files/master_of_magic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/bnk_files/master_of_magic.bnk -------------------------------------------------------------------------------- /fm_banks/bnk_files/themepark.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/bnk_files/themepark.tmb -------------------------------------------------------------------------------- /fm_banks/dmx/DMXOPL-by-sneakernets-old.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/dmx/DMXOPL-by-sneakernets-old.op2 -------------------------------------------------------------------------------- /fm_banks/dmx/doom1.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/dmx/doom1.op2 -------------------------------------------------------------------------------- /fm_banks/dmx/doom2.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/dmx/doom2.op2 -------------------------------------------------------------------------------- /fm_banks/dmx/heretic.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/dmx/heretic.op2 -------------------------------------------------------------------------------- /fm_banks/dmx/raptor.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/dmx/raptor.op2 -------------------------------------------------------------------------------- /fm_banks/dmx/strife.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/dmx/strife.op2 -------------------------------------------------------------------------------- /fm_banks/hmi/3d_Table_Sports/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/3d_Table_Sports/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/3d_Table_Sports/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/3d_Table_Sports/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Aces_of_the_Deep/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Aces_of_the_Deep/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Aces_of_the_Deep/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Aces_of_the_Deep/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Anvil_of_Dawn/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Anvil_of_Dawn/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Anvil_of_Dawn/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Anvil_of_Dawn/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/hamdrum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/hamdrum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/hammelo.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/hammelo.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/intdrum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/intdrum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/intmelo.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/intmelo.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/rickdrum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/rickdrum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent/rickmelo.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent/rickmelo.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent_2/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent_2/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Descent_2/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Descent_2/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Earthsiege/drum-old.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Earthsiege/drum-old.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Earthsiege/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Earthsiege/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Earthsiege/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Earthsiege/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Normality/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Normality/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Normality/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Normality/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Shattered_Steel/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Shattered_Steel/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Shattered_Steel/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Shattered_Steel/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Theme_Park/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Theme_Park/drum.bnk -------------------------------------------------------------------------------- /fm_banks/hmi/Theme_Park/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/hmi/Theme_Park/melodic.bnk -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/$GMOPL.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/$GMOPL.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/0.SBI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/0.SBI -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/1gmopl.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/1gmopl.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/CHRMPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/CHRMPERC.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DOOM-1.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DOOM-1.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DOOM-2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DOOM-2.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DOOM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DOOM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DOOM2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DOOM2.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DRUM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DRUM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DRUM2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DRUM2.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DRUM3.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DRUM3.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DRUM4.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DRUM4.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DRUMOPL.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DRUMOPL.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/DRUMS.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/DRUMS.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/GENMIDI.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/GENMIDI.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/GM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/GM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/GMOPL1.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/GMOPL1.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/MAUIFM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/MAUIFM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/MAUIPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/MAUIPERC.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/MT32.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/MT32.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/NVD.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/NVD.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/PERCUSSV.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/PERCUSSV.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/TIMBRE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/TIMBRE.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/Inst/gmopl.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/Inst/gmopl.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/JOconnel-DRUM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/JOconnel-DRUM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/JOconnel.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/JOconnel.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/fmsynth_internal_drum.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/fmsynth_internal_drum.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/fmsynth_internal_melodic.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/fmsynth_internal_melodic.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/game.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/game.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/gmopl_wohl_mod-drums.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/gmopl_wohl_mod-drums.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/gmopl_wohl_mod.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/gmopl_wohl_mod.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/BASS.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/BASS.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/BRASS.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/BRASS.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/CHRMPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/CHRMPERC.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/DRUM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/DRUM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/ENSEMBLE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/ENSEMBLE.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/FMTIMBRE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/FMTIMBRE.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/GENMIDI.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/GENMIDI.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/GM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/GM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/GMOPL.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/GMOPL.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/GMOPL2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/GMOPL2.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/GUITAR.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/GUITAR.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/HARP.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/HARP.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/IBK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/IBK.H -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/IBK_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/IBK_License.txt -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/MAUIFM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/MAUIFM.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/MAUIPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/MAUIPERC.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/MELODY.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/MELODY.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/MT32.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/MT32.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/ORGAN.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/ORGAN.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/PERCUSSV.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/PERCUSSV.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/PIANO.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/PIANO.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/PIPE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/PIPE.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/README.TXT -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/REED.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/REED.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/SYNLEAD.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/SYNLEAD.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/SYNLEAD2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/SYNLEAD2.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/SYNLEAD3.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/SYNLEAD3.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/SYNPAD.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/SYNPAD.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/TIMBRE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/TIMBRE.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/ibk/VIOLIN.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/ibk/VIOLIN.IBK -------------------------------------------------------------------------------- /fm_banks/ibk_files/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/license.txt -------------------------------------------------------------------------------- /fm_banks/ibk_files/mt_fm.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/mt_fm.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/nitemare_3d.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/nitemare_3d.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/soccer-genmidi.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/soccer-genmidi.ibk -------------------------------------------------------------------------------- /fm_banks/ibk_files/soccer-percs.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ibk_files/soccer-percs.ibk -------------------------------------------------------------------------------- /fm_banks/junglevision/fat2.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/fat2.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/fat4.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/fat4.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/jv_2op.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/jv_2op.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/2x2.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/2x2.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/2x2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/2x2.opl -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/fat2_modded.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/fat2_modded.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/fat4-fixed.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/fat4-fixed.opl -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/fat4_old.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/fat4_old.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/fat4_probe.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/fat4_probe.op3 -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/gmoconel.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/gmoconel.tmb -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/gmopl_wohl_mod.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/gmopl_wohl_mod.tmb -------------------------------------------------------------------------------- /fm_banks/junglevision/unused/wallace.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/unused/wallace.tmb -------------------------------------------------------------------------------- /fm_banks/junglevision/wallace.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/junglevision/wallace.op3 -------------------------------------------------------------------------------- /fm_banks/list-of-banks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/list-of-banks.txt -------------------------------------------------------------------------------- /fm_banks/misc_files/bisqwit.adlraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/misc_files/bisqwit.adlraw -------------------------------------------------------------------------------- /fm_banks/misc_files/cartooners-adlib-decrypted.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/misc_files/cartooners-adlib-decrypted.dat -------------------------------------------------------------------------------- /fm_banks/tmb_files/apogee_duke3d99.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/apogee_duke3d99.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/apogee_xenophage.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/apogee_xenophage.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/bloodtmb.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/bloodtmb.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/buildtmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/buildtmb.c -------------------------------------------------------------------------------- /fm_banks/tmb_files/d3dtimbr.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/d3dtimbr.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/default.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/default.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/nam.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/nam.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/rott.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/rott.tmb -------------------------------------------------------------------------------- /fm_banks/tmb_files/swtimbr.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/tmb_files/swtimbr.tmb -------------------------------------------------------------------------------- /fm_banks/wopl_files/Apogee-IMF-90.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/Apogee-IMF-90.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/DMXOPL3-by-sneakernets-GS.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/DMXOPL3-by-sneakernets-GS.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/GM-By-J.A.Nguyen-and-Wohlstand.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/GM-By-J.A.Nguyen-and-Wohlstand.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/Unused/Apogee-IMF-90-old.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/Unused/Apogee-IMF-90-old.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/Unused/lostvik.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/Unused/lostvik.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/Wohlstand's-modded-FatMan.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/Wohlstand's-modded-FatMan.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/fatman-2op.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/fatman-2op.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/fatman-4op.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/fatman-4op.wopl -------------------------------------------------------------------------------- /fm_banks/wopl_files/fatman-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/fatman-readme.txt -------------------------------------------------------------------------------- /fm_banks/wopl_files/msadlib.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/wopl_files/msadlib.wopl -------------------------------------------------------------------------------- /fm_banks/ymf262.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ymf262.odt -------------------------------------------------------------------------------- /fm_banks/ymf262.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks/ymf262.pdf -------------------------------------------------------------------------------- /fm_banks_new/Apogee-IMF-90.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/Apogee-IMF-90.woplx -------------------------------------------------------------------------------- /fm_banks_new/DMXOPL3-by-sneakernets-GS.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/DMXOPL3-by-sneakernets-GS.woplx -------------------------------------------------------------------------------- /fm_banks_new/GM-By-J.A.Nguyen-and-Wohlstand.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/GM-By-J.A.Nguyen-and-Wohlstand.woplx -------------------------------------------------------------------------------- /fm_banks_new/LICENSE-AIL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/LICENSE-AIL2.txt -------------------------------------------------------------------------------- /fm_banks_new/LICENSE-DMXOPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/LICENSE-DMXOPL.txt -------------------------------------------------------------------------------- /fm_banks_new/LICENSE-FMSynth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/LICENSE-FMSynth.txt -------------------------------------------------------------------------------- /fm_banks_new/LICENSE-IMF90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/LICENSE-IMF90.txt -------------------------------------------------------------------------------- /fm_banks_new/LICENSE-TheFatMan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/LICENSE-TheFatMan.txt -------------------------------------------------------------------------------- /fm_banks_new/ail/ail-realm.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/ail-realm.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-2op-ail-default.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-2op-ail-default.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-2op-ail-discworld.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-2op-ail-discworld.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-2op-ail-farm.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-2op-ail-farm.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-2op-ail-soccer.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-2op-ail-soccer.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-2op-ail-starship.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-2op-ail-starship.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-2op-ail-warcraft2.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-2op-ail-warcraft2.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-farm.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-farm.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-guilty.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-guilty.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-little.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-little.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-master-o.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-master-o.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-master-s.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-master-s.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-master.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-master.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-shock.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-shock.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-street.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-street.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-4op-ail-terra.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-4op-ail-terra.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-mt32-ail-earth1.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-mt32-ail-earth1.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-mt32-ail-earth2.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-mt32-ail-earth2.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-mt32-ail-zork.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-mt32-ail-zork.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/fatman-mt32.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/fatman-mt32.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-gm-hospital.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-gm-hospital.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-gm-monopoly.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-gm-monopoly.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-gm-trader.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-gm-trader.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-gm-warcraft.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-gm-warcraft.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-bards.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-bards.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-bucks.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-bucks.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-heroes.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-heroes.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-jagged.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-jagged.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-magic-carpet-2.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-magic-carpet-2.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-sample.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-sample.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-soccerman.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-soccerman.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-syndicate.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-syndicate.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-synwars.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-synwars.woplx -------------------------------------------------------------------------------- /fm_banks_new/ail/miles-mt32-underworld.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/ail/miles-mt32-underworld.woplx -------------------------------------------------------------------------------- /fm_banks_new/apogee/fatman-2op-apogee-default.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/apogee/fatman-2op-apogee-default.woplx -------------------------------------------------------------------------------- /fm_banks_new/apogee/fatman-2op-duke.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/apogee/fatman-2op-duke.woplx -------------------------------------------------------------------------------- /fm_banks_new/apogee/fatman-2op-nam.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/apogee/fatman-2op-nam.woplx -------------------------------------------------------------------------------- /fm_banks_new/apogee/fatman-2op-warrior.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/apogee/fatman-2op-warrior.woplx -------------------------------------------------------------------------------- /fm_banks_new/apogee/rott.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/apogee/rott.woplx -------------------------------------------------------------------------------- /fm_banks_new/bisqwit.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/bisqwit.woplx -------------------------------------------------------------------------------- /fm_banks_new/fatman-2op-mod-by-Wohlstand.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/fatman-2op-mod-by-Wohlstand.woplx -------------------------------------------------------------------------------- /fm_banks_new/fatman-2op.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/fatman-2op.woplx -------------------------------------------------------------------------------- /fm_banks_new/fatman-4op.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/fatman-4op.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/README.txt -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-Eric-Heberling-AdvCivil.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-Eric-Heberling-AdvCivil.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-Eric-Heberling-Death-Gate.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-Eric-Heberling-Death-Gate.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-Eric-Heberling-Nemesis.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-Eric-Heberling-Nemesis.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-battle-chess-4000.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-battle-chess-4000.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-caesar2.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-caesar2.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-lost-vikings.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-lost-vikings.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-megapatch-hockey.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-megapatch-hockey.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-megapatch-probe-ent.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-megapatch-probe-ent.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ail-when-two-worlds-war.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ail-when-two-worlds-war.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/apogee-megapatch-blood.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/apogee-megapatch-blood.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/dmx-Bobby-Prince-v1.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/dmx-Bobby-Prince-v1.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/dmx-Bobby-Prince-v2.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/dmx-Bobby-Prince-v2.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/dmx-Scott-Host.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/dmx-Scott-Host.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/dmx-Strife.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/dmx-Strife.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/dmx-default.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/dmx-default.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/hmi-megapatch-aces-of-the-deep.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/hmi-megapatch-aces-of-the-deep.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/hmi-megapatch-by-loudmouth.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/hmi-megapatch-by-loudmouth.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/hmi-megapatch-earthsiege.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/hmi-megapatch-earthsiege.woplx -------------------------------------------------------------------------------- /fm_banks_new/greyzone/ms-adlib.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/greyzone/ms-adlib.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-descent.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-descent.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-hmi-anvil-of-dawn.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-hmi-anvil-of-dawn.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-hmi-normality.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-hmi-normality.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-non-gm-descent-ham.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-non-gm-descent-ham.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-non-gm-descent-int.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-non-gm-descent-int.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-non-gm-descent-rick.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-non-gm-descent-rick.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/fatman-2op-non-gm-descent2.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/fatman-2op-non-gm-descent2.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/hmi-miles-mt32-park.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/hmi-miles-mt32-park.woplx -------------------------------------------------------------------------------- /fm_banks_new/hmi/hmi-shattered-steel.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/hmi/hmi-shattered-steel.woplx -------------------------------------------------------------------------------- /fm_banks_new/junglevision-2op.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/junglevision-2op.woplx -------------------------------------------------------------------------------- /fm_banks_new/oconnell/fmsynth-gm-cyberpuck.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/oconnell/fmsynth-gm-cyberpuck.woplx -------------------------------------------------------------------------------- /fm_banks_new/oconnell/fmsynth-gm-wallace.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/oconnell/fmsynth-gm-wallace.woplx -------------------------------------------------------------------------------- /fm_banks_new/oconnell/fmsynth-gm.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/oconnell/fmsynth-gm.woplx -------------------------------------------------------------------------------- /fm_banks_new/oconnell/mt32-fm-sorcerer.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/oconnell/mt32-fm-sorcerer.woplx -------------------------------------------------------------------------------- /fm_banks_new/oconnell/soccer.woplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/fm_banks_new/oconnell/soccer.woplx -------------------------------------------------------------------------------- /include/adlmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/include/adlmidi.h -------------------------------------------------------------------------------- /libADLMIDI.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/libADLMIDI.pc.in -------------------------------------------------------------------------------- /libADLMIDIConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/libADLMIDIConfig.cmake.in -------------------------------------------------------------------------------- /projects/watcom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/.gitignore -------------------------------------------------------------------------------- /projects/watcom/ADLMIDI-linux32.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/ADLMIDI-linux32.tgt -------------------------------------------------------------------------------- /projects/watcom/ADLMIDI-win32.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/ADLMIDI-win32.tgt -------------------------------------------------------------------------------- /projects/watcom/ADLMIDI.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/ADLMIDI.tgt -------------------------------------------------------------------------------- /projects/watcom/bass.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/bass.mid -------------------------------------------------------------------------------- /projects/watcom/dmxopl3.wop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/dmxopl3.wop -------------------------------------------------------------------------------- /projects/watcom/libADLMIDI-linux32.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/libADLMIDI-linux32.wpj -------------------------------------------------------------------------------- /projects/watcom/libADLMIDI-win32.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/libADLMIDI-win32.wpj -------------------------------------------------------------------------------- /projects/watcom/libADLMIDI.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/libADLMIDI.tgt -------------------------------------------------------------------------------- /projects/watcom/libADLMIDI.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/libADLMIDI.wpj -------------------------------------------------------------------------------- /projects/watcom/nin-hlah.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/nin-hlah.mid -------------------------------------------------------------------------------- /projects/watcom/onestop.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/onestop.mid -------------------------------------------------------------------------------- /projects/watcom/playmidi-linux32.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/playmidi-linux32.tgt -------------------------------------------------------------------------------- /projects/watcom/playmidi-win32.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/playmidi-win32.tgt -------------------------------------------------------------------------------- /projects/watcom/playmidi.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/playmidi.tgt -------------------------------------------------------------------------------- /projects/watcom/pmidid32.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/pmidid32.tgt -------------------------------------------------------------------------------- /projects/watcom/ttd10.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/projects/watcom/ttd10.mid -------------------------------------------------------------------------------- /src/adlmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi.cpp -------------------------------------------------------------------------------- /src/adlmidi_bankmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_bankmap.h -------------------------------------------------------------------------------- /src/adlmidi_bankmap.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_bankmap.tcc -------------------------------------------------------------------------------- /src/adlmidi_cvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_cvt.hpp -------------------------------------------------------------------------------- /src/adlmidi_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_db.h -------------------------------------------------------------------------------- /src/adlmidi_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_load.cpp -------------------------------------------------------------------------------- /src/adlmidi_midiplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_midiplay.cpp -------------------------------------------------------------------------------- /src/adlmidi_midiplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_midiplay.hpp -------------------------------------------------------------------------------- /src/adlmidi_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_opl3.cpp -------------------------------------------------------------------------------- /src/adlmidi_opl3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_opl3.hpp -------------------------------------------------------------------------------- /src/adlmidi_private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_private.cpp -------------------------------------------------------------------------------- /src/adlmidi_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_private.hpp -------------------------------------------------------------------------------- /src/adlmidi_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_ptr.hpp -------------------------------------------------------------------------------- /src/adlmidi_sequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/adlmidi_sequencer.cpp -------------------------------------------------------------------------------- /src/chips/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/.gitattributes -------------------------------------------------------------------------------- /src/chips/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/LICENSE.txt -------------------------------------------------------------------------------- /src/chips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/README.md -------------------------------------------------------------------------------- /src/chips/chipset.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/chipset.cmake -------------------------------------------------------------------------------- /src/chips/chipset.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/chipset.pri -------------------------------------------------------------------------------- /src/chips/common/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/common/mutex.hpp -------------------------------------------------------------------------------- /src/chips/common/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/common/ptr.hpp -------------------------------------------------------------------------------- /src/chips/dos_hw_opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/dos_hw_opl.cpp -------------------------------------------------------------------------------- /src/chips/dos_hw_opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/dos_hw_opl.h -------------------------------------------------------------------------------- /src/chips/dosbox/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/dosbox/dbopl.cpp -------------------------------------------------------------------------------- /src/chips/dosbox/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/dosbox/dbopl.h -------------------------------------------------------------------------------- /src/chips/dosbox_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/dosbox_opl3.cpp -------------------------------------------------------------------------------- /src/chips/dosbox_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/dosbox_opl3.h -------------------------------------------------------------------------------- /src/chips/esfmu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu/LICENSE -------------------------------------------------------------------------------- /src/chips/esfmu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu/README.md -------------------------------------------------------------------------------- /src/chips/esfmu/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu/assets/logo.png -------------------------------------------------------------------------------- /src/chips/esfmu/esfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu/esfm.c -------------------------------------------------------------------------------- /src/chips/esfmu/esfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu/esfm.h -------------------------------------------------------------------------------- /src/chips/esfmu/esfm_registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu/esfm_registers.c -------------------------------------------------------------------------------- /src/chips/esfmu_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu_opl3.cpp -------------------------------------------------------------------------------- /src/chips/esfmu_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/esfmu_opl3.h -------------------------------------------------------------------------------- /src/chips/java/JavaOPL3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/java/JavaOPL3.hpp -------------------------------------------------------------------------------- /src/chips/java_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/java_opl3.cpp -------------------------------------------------------------------------------- /src/chips/java_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/java_opl3.h -------------------------------------------------------------------------------- /src/chips/mame/mame_fmopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/mame/mame_fmopl.cpp -------------------------------------------------------------------------------- /src/chips/mame/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/mame/opl.h -------------------------------------------------------------------------------- /src/chips/mame_opl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/mame_opl2.cpp -------------------------------------------------------------------------------- /src/chips/mame_opl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/mame_opl2.h -------------------------------------------------------------------------------- /src/chips/nuked/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked/LICENSE -------------------------------------------------------------------------------- /src/chips/nuked/nukedopl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked/nukedopl3.c -------------------------------------------------------------------------------- /src/chips/nuked/nukedopl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked/nukedopl3.h -------------------------------------------------------------------------------- /src/chips/nuked/nukedopl3_174.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked/nukedopl3_174.c -------------------------------------------------------------------------------- /src/chips/nuked/nukedopl3_174.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked/nukedopl3_174.h -------------------------------------------------------------------------------- /src/chips/nuked_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked_opl3.cpp -------------------------------------------------------------------------------- /src/chips/nuked_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked_opl3.h -------------------------------------------------------------------------------- /src/chips/nuked_opl3_v174.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked_opl3_v174.cpp -------------------------------------------------------------------------------- /src/chips/nuked_opl3_v174.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/nuked_opl3_v174.h -------------------------------------------------------------------------------- /src/chips/opal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/LICENSE.txt -------------------------------------------------------------------------------- /src/chips/opal/old/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/old/LICENSE.txt -------------------------------------------------------------------------------- /src/chips/opal/old/README.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/old/README.old -------------------------------------------------------------------------------- /src/chips/opal/old/opal-orig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/old/opal-orig.hpp -------------------------------------------------------------------------------- /src/chips/opal/old/opal-pan.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/old/opal-pan.diff -------------------------------------------------------------------------------- /src/chips/opal/opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/opal.c -------------------------------------------------------------------------------- /src/chips/opal/opal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal/opal.h -------------------------------------------------------------------------------- /src/chips/opal_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal_opl3.cpp -------------------------------------------------------------------------------- /src/chips/opal_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opal_opl3.h -------------------------------------------------------------------------------- /src/chips/opl_chip_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opl_chip_base.h -------------------------------------------------------------------------------- /src/chips/opl_chip_base.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opl_chip_base.tcc -------------------------------------------------------------------------------- /src/chips/opl_serial_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opl_serial_misc.h -------------------------------------------------------------------------------- /src/chips/opl_serial_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opl_serial_port.cpp -------------------------------------------------------------------------------- /src/chips/opl_serial_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opl_serial_port.h -------------------------------------------------------------------------------- /src/chips/opl_serial_port.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/opl_serial_port.pri -------------------------------------------------------------------------------- /src/chips/sync_from.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/sync_from.sh -------------------------------------------------------------------------------- /src/chips/sync_to.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/sync_to.sh -------------------------------------------------------------------------------- /src/chips/win9x_opl_proxy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/win9x_opl_proxy.cmake -------------------------------------------------------------------------------- /src/chips/win9x_opl_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/win9x_opl_proxy.cpp -------------------------------------------------------------------------------- /src/chips/win9x_opl_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/win9x_opl_proxy.h -------------------------------------------------------------------------------- /src/chips/win9x_opl_proxy.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/win9x_opl_proxy.pri -------------------------------------------------------------------------------- /src/chips/ym3812_lle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ym3812_lle.cpp -------------------------------------------------------------------------------- /src/chips/ym3812_lle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ym3812_lle.h -------------------------------------------------------------------------------- /src/chips/ym3812_lle/nopl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ym3812_lle/nopl2.c -------------------------------------------------------------------------------- /src/chips/ym3812_lle/nopl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ym3812_lle/nopl2.h -------------------------------------------------------------------------------- /src/chips/ym3812_lle/nuked_fmopl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ym3812_lle/nuked_fmopl2.c -------------------------------------------------------------------------------- /src/chips/ym3812_lle/nuked_fmopl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ym3812_lle/nuked_fmopl2.h -------------------------------------------------------------------------------- /src/chips/ymf262_lle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle.cpp -------------------------------------------------------------------------------- /src/chips/ymf262_lle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle.h -------------------------------------------------------------------------------- /src/chips/ymf262_lle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle/LICENSE -------------------------------------------------------------------------------- /src/chips/ymf262_lle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle/Readme.md -------------------------------------------------------------------------------- /src/chips/ymf262_lle/nopl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle/nopl3.c -------------------------------------------------------------------------------- /src/chips/ymf262_lle/nopl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle/nopl3.h -------------------------------------------------------------------------------- /src/chips/ymf262_lle/nuked_fmopl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle/nuked_fmopl3.c -------------------------------------------------------------------------------- /src/chips/ymf262_lle/nuked_fmopl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymf262_lle/nuked_fmopl3.h -------------------------------------------------------------------------------- /src/chips/ymfm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/README.md -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm.h -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_adpcm.cpp -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_adpcm.h -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_fm.h -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_fm.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_fm.ipp -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_misc.cpp -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_misc.h -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_opl.cpp -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_opl.h -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_pcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_pcm.cpp -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_pcm.h -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_ssg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_ssg.cpp -------------------------------------------------------------------------------- /src/chips/ymfm/ymfm_ssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm/ymfm_ssg.h -------------------------------------------------------------------------------- /src/chips/ymfm_opl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm_opl2.cpp -------------------------------------------------------------------------------- /src/chips/ymfm_opl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm_opl2.h -------------------------------------------------------------------------------- /src/chips/ymfm_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm_opl3.cpp -------------------------------------------------------------------------------- /src/chips/ymfm_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/chips/ymfm_opl3.h -------------------------------------------------------------------------------- /src/inst_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/inst_db.cpp -------------------------------------------------------------------------------- /src/midiseq/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/LICENSE.txt -------------------------------------------------------------------------------- /src/midiseq/file_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/file_reader.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/common.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/cvt_xmi2mid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/cvt_xmi2mid.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/databank_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/databank_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/debug_songdump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/debug_songdump.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/durated_note_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/durated_note_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/err_string_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/err_string_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/io_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/io_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/load_music_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/load_music_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/loop_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/loop_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/mididata_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/mididata_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/miditrack_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/miditrack_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/platform_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/platform_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/process_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/process_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_cmf_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_cmf_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_gmf_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_gmf_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_hmi_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_hmi_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_imf_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_imf_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_klm_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_klm_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_mus_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_mus_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_rsxx_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_rsxx_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_smf_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_smf_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/read_xmi_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/read_xmi_impl.hpp -------------------------------------------------------------------------------- /src/midiseq/impl/tempo_fraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/impl/tempo_fraction.hpp -------------------------------------------------------------------------------- /src/midiseq/midi_sequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/midi_sequencer.h -------------------------------------------------------------------------------- /src/midiseq/midi_sequencer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/midi_sequencer.hpp -------------------------------------------------------------------------------- /src/midiseq/midi_sequencer_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/midiseq/midi_sequencer_impl.hpp -------------------------------------------------------------------------------- /src/models/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/LICENSE.txt -------------------------------------------------------------------------------- /src/models/model_ail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_ail.c -------------------------------------------------------------------------------- /src/models/model_apogee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_apogee.c -------------------------------------------------------------------------------- /src/models/model_dmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_dmx.c -------------------------------------------------------------------------------- /src/models/model_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_generic.c -------------------------------------------------------------------------------- /src/models/model_hmi_sos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_hmi_sos.c -------------------------------------------------------------------------------- /src/models/model_msadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_msadlib.c -------------------------------------------------------------------------------- /src/models/model_oconnell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_oconnell.c -------------------------------------------------------------------------------- /src/models/model_win9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/model_win9x.c -------------------------------------------------------------------------------- /src/models/opl_models.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/opl_models.cmake -------------------------------------------------------------------------------- /src/models/opl_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/opl_models.h -------------------------------------------------------------------------------- /src/models/util/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/util/README.txt -------------------------------------------------------------------------------- /src/models/util/freq-opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/util/freq-opl.c -------------------------------------------------------------------------------- /src/models/util/oplbrightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/models/util/oplbrightness.c -------------------------------------------------------------------------------- /src/oplinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/oplinst.h -------------------------------------------------------------------------------- /src/structures/pl_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/structures/pl_list.hpp -------------------------------------------------------------------------------- /src/structures/pl_list.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/structures/pl_list.tcc -------------------------------------------------------------------------------- /src/wopl/wopl_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/wopl/wopl_file.c -------------------------------------------------------------------------------- /src/wopl/wopl_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/src/wopl/wopl_file.h -------------------------------------------------------------------------------- /test.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test.wopl -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bankmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/bankmap/CMakeLists.txt -------------------------------------------------------------------------------- /test/bankmap/bank_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/bankmap/bank_map.cpp -------------------------------------------------------------------------------- /test/common/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/common/catch.hpp -------------------------------------------------------------------------------- /test/common/catch_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/common/catch_main.cpp -------------------------------------------------------------------------------- /test/conversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/conversion/CMakeLists.txt -------------------------------------------------------------------------------- /test/conversion/conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/conversion/conversion.cpp -------------------------------------------------------------------------------- /test/wopl-file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/wopl-file/CMakeLists.txt -------------------------------------------------------------------------------- /test/wopl-file/wopl_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/test/wopl-file/wopl_file.cpp -------------------------------------------------------------------------------- /utils/adlmidi-2/6x9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/6x9.hpp -------------------------------------------------------------------------------- /utils/adlmidi-2/8x16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/8x16.hpp -------------------------------------------------------------------------------- /utils/adlmidi-2/9x15.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/9x15.hpp -------------------------------------------------------------------------------- /utils/adlmidi-2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/CMakeLists.txt -------------------------------------------------------------------------------- /utils/adlmidi-2/cmake/check-termio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/cmake/check-termio.c -------------------------------------------------------------------------------- /utils/adlmidi-2/cmake/check-termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/cmake/check-termios.c -------------------------------------------------------------------------------- /utils/adlmidi-2/input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/input.cc -------------------------------------------------------------------------------- /utils/adlmidi-2/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/input.hpp -------------------------------------------------------------------------------- /utils/adlmidi-2/midiplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/midiplay.cc -------------------------------------------------------------------------------- /utils/adlmidi-2/puzzlegame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/puzzlegame.cc -------------------------------------------------------------------------------- /utils/adlmidi-2/puzzlegame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/adlmidi-2/puzzlegame.hpp -------------------------------------------------------------------------------- /utils/common/utf8main.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/common/utf8main.cmake -------------------------------------------------------------------------------- /utils/common/utf8main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/common/utf8main.h -------------------------------------------------------------------------------- /utils/common/utf8main_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/common/utf8main_win32.cpp -------------------------------------------------------------------------------- /utils/dumpbank/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/dumpbank/CMakeLists.txt -------------------------------------------------------------------------------- /utils/dumpbank/dumpbank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/dumpbank/dumpbank.cpp -------------------------------------------------------------------------------- /utils/dumpmiles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/dumpmiles/CMakeLists.txt -------------------------------------------------------------------------------- /utils/dumpmiles/dumpmiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/dumpmiles/dumpmiles.cpp -------------------------------------------------------------------------------- /utils/dumpwopl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/dumpwopl/CMakeLists.txt -------------------------------------------------------------------------------- /utils/dumpwopl/dumpwopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/dumpwopl/dumpwopl.c -------------------------------------------------------------------------------- /utils/gen_adldata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/CMakeLists.txt -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/common.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_ail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_ail.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_bisqwit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_bisqwit.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_bnk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_bnk.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_bnk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_bnk2.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_ea.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_ibk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_ibk.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_jv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_jv.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_op2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_op2.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_tmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_tmb.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_wopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_wopl.h -------------------------------------------------------------------------------- /utils/gen_adldata/file_formats/load_woplx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/file_formats/load_woplx.h -------------------------------------------------------------------------------- /utils/gen_adldata/gen_adldata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/gen_adldata.cc -------------------------------------------------------------------------------- /utils/gen_adldata/ini/IniProcessor.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/ini/IniProcessor.pri -------------------------------------------------------------------------------- /utils/gen_adldata/ini/ini_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/ini/ini_processing.cpp -------------------------------------------------------------------------------- /utils/gen_adldata/ini/ini_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/ini/ini_processing.h -------------------------------------------------------------------------------- /utils/gen_adldata/ini/ini_processing_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/ini/ini_processing_variant.h -------------------------------------------------------------------------------- /utils/gen_adldata/measurer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/measurer.cpp -------------------------------------------------------------------------------- /utils/gen_adldata/measurer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/measurer.h -------------------------------------------------------------------------------- /utils/gen_adldata/midi_inst_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/midi_inst_list.h -------------------------------------------------------------------------------- /utils/gen_adldata/progs_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/progs_cache.cpp -------------------------------------------------------------------------------- /utils/gen_adldata/progs_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/progs_cache.h -------------------------------------------------------------------------------- /utils/gen_adldata/scrapped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/gen_adldata/scrapped.txt -------------------------------------------------------------------------------- /utils/mididump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/mididump/CMakeLists.txt -------------------------------------------------------------------------------- /utils/mididump/mididump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/mididump/mididump.cpp -------------------------------------------------------------------------------- /utils/midiplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/CMakeLists.txt -------------------------------------------------------------------------------- /utils/midiplay/adlmidiplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/adlmidiplay.cpp -------------------------------------------------------------------------------- /utils/midiplay/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/audio.h -------------------------------------------------------------------------------- /utils/midiplay/audio_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/audio_sdl.c -------------------------------------------------------------------------------- /utils/midiplay/audio_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/audio_winmm.c -------------------------------------------------------------------------------- /utils/midiplay/dos_tman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/dos_tman.cpp -------------------------------------------------------------------------------- /utils/midiplay/dos_tman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/dos_tman.h -------------------------------------------------------------------------------- /utils/midiplay/wave_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/wave_writer.c -------------------------------------------------------------------------------- /utils/midiplay/wave_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/midiplay/wave_writer.h -------------------------------------------------------------------------------- /utils/mus2mid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/mus2mid/CMakeLists.txt -------------------------------------------------------------------------------- /utils/mus2mid/cvt_mus2mid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/mus2mid/cvt_mus2mid.hpp -------------------------------------------------------------------------------- /utils/mus2mid/mus2mid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/mus2mid/mus2mid.cpp -------------------------------------------------------------------------------- /utils/test/adldatatest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/test/adldatatest.cc -------------------------------------------------------------------------------- /utils/test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/test/test.cc -------------------------------------------------------------------------------- /utils/update-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/update-copyright.sh -------------------------------------------------------------------------------- /utils/vlc_codec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/vlc_codec/.gitignore -------------------------------------------------------------------------------- /utils/vlc_codec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/vlc_codec/CMakeLists.txt -------------------------------------------------------------------------------- /utils/vlc_codec/libadlmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/vlc_codec/libadlmidi.c -------------------------------------------------------------------------------- /utils/winmm_drv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/CMakeLists.txt -------------------------------------------------------------------------------- /utils/winmm_drv/config/regconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/config/regconfig.c -------------------------------------------------------------------------------- /utils/winmm_drv/config/regconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/config/regconfig.h -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/adlconfig-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/adlconfig-tool.c -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/adlconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/adlconfig.c -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/adlconfig.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/adlconfig.def -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/adlconfig.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/adlconfig.manifest -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/adlconfig.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/adlconfig.rc -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/config_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/config_dialog.c -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/config_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/config_dialog.h -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/opl3icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/opl3icon.ico -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/res-cpl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/res-cpl.rc -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/res-tool.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/res-tool.rc -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/resource.h -------------------------------------------------------------------------------- /utils/winmm_drv/cpl/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/cpl/targetver.h -------------------------------------------------------------------------------- /utils/winmm_drv/installer/drvinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/installer/drvinst.c -------------------------------------------------------------------------------- /utils/winmm_drv/installer/drvinst.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/installer/drvinst.exe.manifest -------------------------------------------------------------------------------- /utils/winmm_drv/installer/drvinst.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/installer/drvinst.rc -------------------------------------------------------------------------------- /utils/winmm_drv/installer/install.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup install -------------------------------------------------------------------------------- /utils/winmm_drv/installer/uninstall.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup uninstall -------------------------------------------------------------------------------- /utils/winmm_drv/src/MidiSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/src/MidiSynth.cpp -------------------------------------------------------------------------------- /utils/winmm_drv/src/MidiSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/src/MidiSynth.h -------------------------------------------------------------------------------- /utils/winmm_drv/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/src/stdafx.h -------------------------------------------------------------------------------- /utils/winmm_drv/src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/src/targetver.h -------------------------------------------------------------------------------- /utils/winmm_drv/src/winmm_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/src/winmm_drv.cpp -------------------------------------------------------------------------------- /utils/winmm_drv/src/winmm_drv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/src/winmm_drv.def -------------------------------------------------------------------------------- /utils/winmm_drv/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/winmm_drv/test/test.c -------------------------------------------------------------------------------- /utils/xmi2mid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/xmi2mid/CMakeLists.txt -------------------------------------------------------------------------------- /utils/xmi2mid/xmi2mid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wohlstand/libADLMIDI/HEAD/utils/xmi2mid/xmi2mid.cpp --------------------------------------------------------------------------------