├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── linux │ └── file-rom-bin └── windows │ └── file-rom-bin.exe ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── doc └── GIMP jhbuild for Windows on Linux.md ├── info └── gimp-rom-image-plugin.png └── src ├── Makefile.am ├── export-dialog.c ├── export-dialog.h ├── file-rom-bin.c ├── format_gba_4bpp.c ├── format_gba_4bpp.h ├── format_gba_8bpp.c ├── format_gba_8bpp.h ├── format_gens_4bpp.c ├── format_gens_4bpp.h ├── format_ggsmswsc_4bpp.c ├── format_ggsmswsc_4bpp.h ├── format_nes_1bpp.c ├── format_nes_1bpp.h ├── format_nes_2bpp.c ├── format_nes_2bpp.h ├── format_ngp_2bpp.c ├── format_ngp_2bpp.h ├── format_snes_3bpp.c ├── format_snes_3bpp.h ├── format_snes_8bpp.c ├── format_snes_8bpp.h ├── format_snesgb_2bpp.c ├── format_snesgb_2bpp.h ├── format_snespce_4bpp.c ├── format_snespce_4bpp.h ├── lib_rom_bin.c ├── lib_rom_bin.h ├── read-rom-bin.c ├── read-rom-bin.h ├── rom_utils.c ├── rom_utils.h ├── write-rom-bin.c └── write-rom-bin.h /.gitignore: -------------------------------------------------------------------------------- 1 | /file-rom-bin 2 | *.zip 3 | *.7z 4 | obj/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/README.md -------------------------------------------------------------------------------- /bin/linux/file-rom-bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/bin/linux/file-rom-bin -------------------------------------------------------------------------------- /bin/windows/file-rom-bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/bin/windows/file-rom-bin.exe -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /doc/GIMP jhbuild for Windows on Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/doc/GIMP jhbuild for Windows on Linux.md -------------------------------------------------------------------------------- /info/gimp-rom-image-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/info/gimp-rom-image-plugin.png -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/export-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/export-dialog.c -------------------------------------------------------------------------------- /src/export-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/export-dialog.h -------------------------------------------------------------------------------- /src/file-rom-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/file-rom-bin.c -------------------------------------------------------------------------------- /src/format_gba_4bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_gba_4bpp.c -------------------------------------------------------------------------------- /src/format_gba_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_gba_4bpp.h -------------------------------------------------------------------------------- /src/format_gba_8bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_gba_8bpp.c -------------------------------------------------------------------------------- /src/format_gba_8bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_gba_8bpp.h -------------------------------------------------------------------------------- /src/format_gens_4bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_gens_4bpp.c -------------------------------------------------------------------------------- /src/format_gens_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_gens_4bpp.h -------------------------------------------------------------------------------- /src/format_ggsmswsc_4bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_ggsmswsc_4bpp.c -------------------------------------------------------------------------------- /src/format_ggsmswsc_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_ggsmswsc_4bpp.h -------------------------------------------------------------------------------- /src/format_nes_1bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_nes_1bpp.c -------------------------------------------------------------------------------- /src/format_nes_1bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_nes_1bpp.h -------------------------------------------------------------------------------- /src/format_nes_2bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_nes_2bpp.c -------------------------------------------------------------------------------- /src/format_nes_2bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_nes_2bpp.h -------------------------------------------------------------------------------- /src/format_ngp_2bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_ngp_2bpp.c -------------------------------------------------------------------------------- /src/format_ngp_2bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_ngp_2bpp.h -------------------------------------------------------------------------------- /src/format_snes_3bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snes_3bpp.c -------------------------------------------------------------------------------- /src/format_snes_3bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snes_3bpp.h -------------------------------------------------------------------------------- /src/format_snes_8bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snes_8bpp.c -------------------------------------------------------------------------------- /src/format_snes_8bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snes_8bpp.h -------------------------------------------------------------------------------- /src/format_snesgb_2bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snesgb_2bpp.c -------------------------------------------------------------------------------- /src/format_snesgb_2bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snesgb_2bpp.h -------------------------------------------------------------------------------- /src/format_snespce_4bpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snespce_4bpp.c -------------------------------------------------------------------------------- /src/format_snespce_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/format_snespce_4bpp.h -------------------------------------------------------------------------------- /src/lib_rom_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/lib_rom_bin.c -------------------------------------------------------------------------------- /src/lib_rom_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/lib_rom_bin.h -------------------------------------------------------------------------------- /src/read-rom-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/read-rom-bin.c -------------------------------------------------------------------------------- /src/read-rom-bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/read-rom-bin.h -------------------------------------------------------------------------------- /src/rom_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/rom_utils.c -------------------------------------------------------------------------------- /src/rom_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/rom_utils.h -------------------------------------------------------------------------------- /src/write-rom-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/write-rom-bin.c -------------------------------------------------------------------------------- /src/write-rom-bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gimp-rom-bin/HEAD/src/write-rom-bin.h --------------------------------------------------------------------------------