├── .gitmodules ├── LICENSE ├── README.md ├── receiver ├── build.bat ├── crc32.c ├── crc32.h ├── main.c └── polarssl │ ├── config.h │ ├── md5.c │ ├── md5.h │ ├── sha1.c │ └── sha1.h └── sender ├── build.bat ├── charmap.asm ├── original_bin ├── pkm_audio_test.bin └── pkm_audio_test.txt ├── sender.asm └── standalone ├── 8800.bin ├── 8E00.bin ├── build.bat └── start.asm /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/README.md -------------------------------------------------------------------------------- /receiver/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/build.bat -------------------------------------------------------------------------------- /receiver/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/crc32.c -------------------------------------------------------------------------------- /receiver/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/crc32.h -------------------------------------------------------------------------------- /receiver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/main.c -------------------------------------------------------------------------------- /receiver/polarssl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/polarssl/config.h -------------------------------------------------------------------------------- /receiver/polarssl/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/polarssl/md5.c -------------------------------------------------------------------------------- /receiver/polarssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/polarssl/md5.h -------------------------------------------------------------------------------- /receiver/polarssl/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/polarssl/sha1.c -------------------------------------------------------------------------------- /receiver/polarssl/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/receiver/polarssl/sha1.h -------------------------------------------------------------------------------- /sender/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/build.bat -------------------------------------------------------------------------------- /sender/charmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/charmap.asm -------------------------------------------------------------------------------- /sender/original_bin/pkm_audio_test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/original_bin/pkm_audio_test.bin -------------------------------------------------------------------------------- /sender/original_bin/pkm_audio_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/original_bin/pkm_audio_test.txt -------------------------------------------------------------------------------- /sender/sender.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/sender.asm -------------------------------------------------------------------------------- /sender/standalone/8800.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/standalone/8800.bin -------------------------------------------------------------------------------- /sender/standalone/8E00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/standalone/8E00.bin -------------------------------------------------------------------------------- /sender/standalone/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/standalone/build.bat -------------------------------------------------------------------------------- /sender/standalone/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/gameboy-audio-dumper/HEAD/sender/standalone/start.asm --------------------------------------------------------------------------------