├── .gitignore ├── Makefile ├── backends ├── aowriter.c ├── aowriter.h ├── backend.h ├── sdlwriter.c ├── sdlwriter.h ├── wave_format.h ├── wavewriter.c └── wavewriter.h ├── demos ├── Demo1.c ├── Demo2.c ├── Demo3.c ├── Demo4.c ├── Demo5.c └── Demo6.c ├── flashlib ├── ByteArray.c ├── ByteArray.h └── Common.h ├── include ├── debug.h └── endianness.h ├── license.txt ├── neoart └── flod │ ├── FileLoader.c │ ├── FileLoader.h │ ├── core │ ├── Amiga.c │ ├── Amiga.h │ ├── AmigaChannel.c │ ├── AmigaChannel.h │ ├── AmigaFilter.c │ ├── AmigaFilter.h │ ├── AmigaPlayer.c │ ├── AmigaPlayer.h │ ├── AmigaRow.c │ ├── AmigaRow.h │ ├── AmigaSample.c │ ├── AmigaSample.h │ ├── AmigaStep.c │ ├── AmigaStep.h │ ├── CoreMixer.c │ ├── CoreMixer.h │ ├── CoreMixerMaxBuffer.h │ ├── CorePlayer.c │ ├── CorePlayer.h │ ├── Hardware.h │ ├── SBChannel.c │ ├── SBChannel.h │ ├── SBPlayer.c │ ├── SBPlayer.h │ ├── SBSample.c │ ├── SBSample.h │ ├── Sample.c │ ├── Sample.h │ ├── Soundblaster.c │ └── Soundblaster.h │ ├── deltamusic │ ├── D1Player.c │ ├── D1Player.h │ ├── D1Sample.c │ ├── D1Sample.h │ ├── D1Voice.c │ ├── D1Voice.h │ ├── D2Player.c │ ├── D2Player.h │ ├── D2Sample.c │ ├── D2Sample.h │ ├── D2Voice.c │ └── D2Voice.h │ ├── digitalmugician │ ├── DMPlayer.c │ ├── DMPlayer.h │ ├── DMPlayer_const.h │ ├── DMSample.c │ ├── DMSample.h │ ├── DMSong.c │ ├── DMSong.h │ ├── DMVoice.c │ └── DMVoice.h │ ├── fasttracker │ ├── F2Data.c │ ├── F2Data.h │ ├── F2Envelope.c │ ├── F2Envelope.h │ ├── F2Instrument.c │ ├── F2Instrument.h │ ├── F2Pattern.c │ ├── F2Pattern.h │ ├── F2Player.c │ ├── F2Player.h │ ├── F2Player_const.h │ ├── F2Point.c │ ├── F2Point.h │ ├── F2Row.c │ ├── F2Row.h │ ├── F2Sample.c │ ├── F2Sample.h │ ├── F2Voice.c │ └── F2Voice.h │ ├── flod.h │ ├── flod_internal.h │ ├── fred │ ├── FEPlayer.c │ ├── FEPlayer.h │ ├── FESample.c │ ├── FESample.h │ ├── FESong.c │ ├── FESong.h │ ├── FETrack.c │ ├── FETrack.h │ ├── FEVoice.c │ └── FEVoice.h │ ├── futurecomposer │ ├── FCPlayer.c │ ├── FCPlayer.h │ ├── FCVoice.c │ └── FCVoice.h │ ├── hippel │ ├── JHPlayer.c │ ├── JHPlayer.h │ ├── JHSong.c │ ├── JHSong.h │ ├── JHVoice.c │ └── JHVoice.h │ ├── hubbard │ ├── RHPlayer.c │ ├── RHPlayer.h │ ├── RHSample.c │ ├── RHSample.h │ ├── RHSong.c │ ├── RHSong.h │ ├── RHVoice.c │ └── RHVoice.h │ ├── sidmon │ ├── S1Player.c │ ├── S1Player.h │ ├── S1Player_const.h │ ├── S1Sample.c │ ├── S1Sample.h │ ├── S1Voice.c │ ├── S1Voice.h │ ├── S2Instrument.c │ ├── S2Instrument.h │ ├── S2Player.c │ ├── S2Player.h │ ├── S2Sample.c │ ├── S2Sample.h │ ├── S2Step.c │ ├── S2Step.h │ ├── S2Voice.c │ ├── S2Voice.h │ ├── SMRow.c │ └── SMRow.h │ ├── soundfx │ ├── FXPlayer.c │ ├── FXPlayer.h │ ├── FXVoice.c │ └── FXVoice.h │ ├── soundmon │ ├── BPPlayer.c │ ├── BPPlayer.h │ ├── BPSample.c │ ├── BPSample.h │ ├── BPStep.c │ ├── BPStep.h │ ├── BPVoice.c │ └── BPVoice.h │ ├── trackers │ ├── PTPlayer.c │ ├── PTPlayer.h │ ├── PTRow.c │ ├── PTRow.h │ ├── PTSample.c │ ├── PTSample.h │ ├── PTVoice.c │ ├── PTVoice.h │ ├── STPlayer.c │ ├── STPlayer.h │ ├── STVoice.c │ └── STVoice.h │ └── whittaker │ ├── DWPlayer.c │ ├── DWPlayer.h │ ├── DWSample.c │ ├── DWSample.h │ ├── DWSong.c │ ├── DWSong.h │ ├── DWVoice.c │ └── DWVoice.h ├── player ├── flodplayer.c ├── keyboard.c └── keyboard.h ├── readme.txt ├── todo └── neoart │ ├── flip │ ├── Huffman.c │ ├── Inflater.c │ ├── ZipEntry.c │ └── ZipFile.c │ └── flod │ └── trackers │ ├── HMPlayer.c │ ├── HMSample.c │ ├── HMVoice.c │ ├── MKPlayer.c │ └── MKVoice.c └── tools ├── raw2wav.c └── wav2c.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/Makefile -------------------------------------------------------------------------------- /backends/aowriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/aowriter.c -------------------------------------------------------------------------------- /backends/aowriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/aowriter.h -------------------------------------------------------------------------------- /backends/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/backend.h -------------------------------------------------------------------------------- /backends/sdlwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/sdlwriter.c -------------------------------------------------------------------------------- /backends/sdlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/sdlwriter.h -------------------------------------------------------------------------------- /backends/wave_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/wave_format.h -------------------------------------------------------------------------------- /backends/wavewriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/wavewriter.c -------------------------------------------------------------------------------- /backends/wavewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/backends/wavewriter.h -------------------------------------------------------------------------------- /demos/Demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/demos/Demo1.c -------------------------------------------------------------------------------- /demos/Demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/demos/Demo2.c -------------------------------------------------------------------------------- /demos/Demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/demos/Demo3.c -------------------------------------------------------------------------------- /demos/Demo4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/demos/Demo4.c -------------------------------------------------------------------------------- /demos/Demo5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/demos/Demo5.c -------------------------------------------------------------------------------- /demos/Demo6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/demos/Demo6.c -------------------------------------------------------------------------------- /flashlib/ByteArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/flashlib/ByteArray.c -------------------------------------------------------------------------------- /flashlib/ByteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/flashlib/ByteArray.h -------------------------------------------------------------------------------- /flashlib/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/flashlib/Common.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/include/endianness.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/license.txt -------------------------------------------------------------------------------- /neoart/flod/FileLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/FileLoader.c -------------------------------------------------------------------------------- /neoart/flod/FileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/FileLoader.h -------------------------------------------------------------------------------- /neoart/flod/core/Amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Amiga.c -------------------------------------------------------------------------------- /neoart/flod/core/Amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Amiga.h -------------------------------------------------------------------------------- /neoart/flod/core/AmigaChannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaChannel.c -------------------------------------------------------------------------------- /neoart/flod/core/AmigaChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaChannel.h -------------------------------------------------------------------------------- /neoart/flod/core/AmigaFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaFilter.c -------------------------------------------------------------------------------- /neoart/flod/core/AmigaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaFilter.h -------------------------------------------------------------------------------- /neoart/flod/core/AmigaPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaPlayer.c -------------------------------------------------------------------------------- /neoart/flod/core/AmigaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaPlayer.h -------------------------------------------------------------------------------- /neoart/flod/core/AmigaRow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaRow.c -------------------------------------------------------------------------------- /neoart/flod/core/AmigaRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaRow.h -------------------------------------------------------------------------------- /neoart/flod/core/AmigaSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaSample.c -------------------------------------------------------------------------------- /neoart/flod/core/AmigaSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaSample.h -------------------------------------------------------------------------------- /neoart/flod/core/AmigaStep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaStep.c -------------------------------------------------------------------------------- /neoart/flod/core/AmigaStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/AmigaStep.h -------------------------------------------------------------------------------- /neoart/flod/core/CoreMixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/CoreMixer.c -------------------------------------------------------------------------------- /neoart/flod/core/CoreMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/CoreMixer.h -------------------------------------------------------------------------------- /neoart/flod/core/CoreMixerMaxBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/CoreMixerMaxBuffer.h -------------------------------------------------------------------------------- /neoart/flod/core/CorePlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/CorePlayer.c -------------------------------------------------------------------------------- /neoart/flod/core/CorePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/CorePlayer.h -------------------------------------------------------------------------------- /neoart/flod/core/Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Hardware.h -------------------------------------------------------------------------------- /neoart/flod/core/SBChannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/SBChannel.c -------------------------------------------------------------------------------- /neoart/flod/core/SBChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/SBChannel.h -------------------------------------------------------------------------------- /neoart/flod/core/SBPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/SBPlayer.c -------------------------------------------------------------------------------- /neoart/flod/core/SBPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/SBPlayer.h -------------------------------------------------------------------------------- /neoart/flod/core/SBSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/SBSample.c -------------------------------------------------------------------------------- /neoart/flod/core/SBSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/SBSample.h -------------------------------------------------------------------------------- /neoart/flod/core/Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Sample.c -------------------------------------------------------------------------------- /neoart/flod/core/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Sample.h -------------------------------------------------------------------------------- /neoart/flod/core/Soundblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Soundblaster.c -------------------------------------------------------------------------------- /neoart/flod/core/Soundblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/core/Soundblaster.h -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D1Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D1Player.c -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D1Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D1Player.h -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D1Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D1Sample.c -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D1Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D1Sample.h -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D1Voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D1Voice.c -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D1Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D1Voice.h -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D2Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D2Player.c -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D2Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D2Player.h -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D2Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D2Sample.c -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D2Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D2Sample.h -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D2Voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D2Voice.c -------------------------------------------------------------------------------- /neoart/flod/deltamusic/D2Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/deltamusic/D2Voice.h -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMPlayer.c -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMPlayer.h -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMPlayer_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMPlayer_const.h -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMSample.c -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMSample.h -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMSong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMSong.c -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMSong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMSong.h -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMVoice.c -------------------------------------------------------------------------------- /neoart/flod/digitalmugician/DMVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/digitalmugician/DMVoice.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Data.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Data.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Envelope.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Envelope.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Instrument.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Instrument.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Pattern.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Pattern.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Player.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Player.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Player_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Player_const.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Point.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Point.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Row.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Row.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Row.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Sample.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Sample.h -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Voice.c -------------------------------------------------------------------------------- /neoart/flod/fasttracker/F2Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fasttracker/F2Voice.h -------------------------------------------------------------------------------- /neoart/flod/flod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/flod.h -------------------------------------------------------------------------------- /neoart/flod/flod_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/flod_internal.h -------------------------------------------------------------------------------- /neoart/flod/fred/FEPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FEPlayer.c -------------------------------------------------------------------------------- /neoart/flod/fred/FEPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FEPlayer.h -------------------------------------------------------------------------------- /neoart/flod/fred/FESample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FESample.c -------------------------------------------------------------------------------- /neoart/flod/fred/FESample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FESample.h -------------------------------------------------------------------------------- /neoart/flod/fred/FESong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FESong.c -------------------------------------------------------------------------------- /neoart/flod/fred/FESong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FESong.h -------------------------------------------------------------------------------- /neoart/flod/fred/FETrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FETrack.c -------------------------------------------------------------------------------- /neoart/flod/fred/FETrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FETrack.h -------------------------------------------------------------------------------- /neoart/flod/fred/FEVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FEVoice.c -------------------------------------------------------------------------------- /neoart/flod/fred/FEVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/fred/FEVoice.h -------------------------------------------------------------------------------- /neoart/flod/futurecomposer/FCPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/futurecomposer/FCPlayer.c -------------------------------------------------------------------------------- /neoart/flod/futurecomposer/FCPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/futurecomposer/FCPlayer.h -------------------------------------------------------------------------------- /neoart/flod/futurecomposer/FCVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/futurecomposer/FCVoice.c -------------------------------------------------------------------------------- /neoart/flod/futurecomposer/FCVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/futurecomposer/FCVoice.h -------------------------------------------------------------------------------- /neoart/flod/hippel/JHPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hippel/JHPlayer.c -------------------------------------------------------------------------------- /neoart/flod/hippel/JHPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hippel/JHPlayer.h -------------------------------------------------------------------------------- /neoart/flod/hippel/JHSong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hippel/JHSong.c -------------------------------------------------------------------------------- /neoart/flod/hippel/JHSong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hippel/JHSong.h -------------------------------------------------------------------------------- /neoart/flod/hippel/JHVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hippel/JHVoice.c -------------------------------------------------------------------------------- /neoart/flod/hippel/JHVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hippel/JHVoice.h -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHPlayer.c -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHPlayer.h -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHSample.c -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHSample.h -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHSong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHSong.c -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHSong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHSong.h -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHVoice.c -------------------------------------------------------------------------------- /neoart/flod/hubbard/RHVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/hubbard/RHVoice.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Player.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Player.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Player_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Player_const.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Sample.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Sample.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Voice.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S1Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S1Voice.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Instrument.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Instrument.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Player.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Player.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Sample.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Sample.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Step.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Step.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Voice.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/S2Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/S2Voice.h -------------------------------------------------------------------------------- /neoart/flod/sidmon/SMRow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/SMRow.c -------------------------------------------------------------------------------- /neoart/flod/sidmon/SMRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/sidmon/SMRow.h -------------------------------------------------------------------------------- /neoart/flod/soundfx/FXPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundfx/FXPlayer.c -------------------------------------------------------------------------------- /neoart/flod/soundfx/FXPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundfx/FXPlayer.h -------------------------------------------------------------------------------- /neoart/flod/soundfx/FXVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundfx/FXVoice.c -------------------------------------------------------------------------------- /neoart/flod/soundfx/FXVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundfx/FXVoice.h -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPPlayer.c -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPPlayer.h -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPSample.c -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPSample.h -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPStep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPStep.c -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPStep.h -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPVoice.c -------------------------------------------------------------------------------- /neoart/flod/soundmon/BPVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/soundmon/BPVoice.h -------------------------------------------------------------------------------- /neoart/flod/trackers/PTPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTPlayer.c -------------------------------------------------------------------------------- /neoart/flod/trackers/PTPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTPlayer.h -------------------------------------------------------------------------------- /neoart/flod/trackers/PTRow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTRow.c -------------------------------------------------------------------------------- /neoart/flod/trackers/PTRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTRow.h -------------------------------------------------------------------------------- /neoart/flod/trackers/PTSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTSample.c -------------------------------------------------------------------------------- /neoart/flod/trackers/PTSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTSample.h -------------------------------------------------------------------------------- /neoart/flod/trackers/PTVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTVoice.c -------------------------------------------------------------------------------- /neoart/flod/trackers/PTVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/PTVoice.h -------------------------------------------------------------------------------- /neoart/flod/trackers/STPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/STPlayer.c -------------------------------------------------------------------------------- /neoart/flod/trackers/STPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/STPlayer.h -------------------------------------------------------------------------------- /neoart/flod/trackers/STVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/STVoice.c -------------------------------------------------------------------------------- /neoart/flod/trackers/STVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/trackers/STVoice.h -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWPlayer.c -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWPlayer.h -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWSample.c -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWSample.h -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWSong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWSong.c -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWSong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWSong.h -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWVoice.c -------------------------------------------------------------------------------- /neoart/flod/whittaker/DWVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/neoart/flod/whittaker/DWVoice.h -------------------------------------------------------------------------------- /player/flodplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/player/flodplayer.c -------------------------------------------------------------------------------- /player/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/player/keyboard.c -------------------------------------------------------------------------------- /player/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/player/keyboard.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/readme.txt -------------------------------------------------------------------------------- /todo/neoart/flip/Huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flip/Huffman.c -------------------------------------------------------------------------------- /todo/neoart/flip/Inflater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flip/Inflater.c -------------------------------------------------------------------------------- /todo/neoart/flip/ZipEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flip/ZipEntry.c -------------------------------------------------------------------------------- /todo/neoart/flip/ZipFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flip/ZipFile.c -------------------------------------------------------------------------------- /todo/neoart/flod/trackers/HMPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flod/trackers/HMPlayer.c -------------------------------------------------------------------------------- /todo/neoart/flod/trackers/HMSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flod/trackers/HMSample.c -------------------------------------------------------------------------------- /todo/neoart/flod/trackers/HMVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flod/trackers/HMVoice.c -------------------------------------------------------------------------------- /todo/neoart/flod/trackers/MKPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flod/trackers/MKPlayer.c -------------------------------------------------------------------------------- /todo/neoart/flod/trackers/MKVoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/todo/neoart/flod/trackers/MKVoice.c -------------------------------------------------------------------------------- /tools/raw2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/tools/raw2wav.c -------------------------------------------------------------------------------- /tools/wav2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/c-flod/HEAD/tools/wav2c.c --------------------------------------------------------------------------------