├── .gitignore ├── LICENSE ├── README ├── bin ├── dos │ └── bin2iso.exe ├── win32 │ └── bin2iso.exe └── win64 │ └── bin2iso.exe └── bin2iso.c /.gitignore: -------------------------------------------------------------------------------- 1 | bin2iso 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelortmann/bin2iso/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelortmann/bin2iso/HEAD/README -------------------------------------------------------------------------------- /bin/dos/bin2iso.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelortmann/bin2iso/HEAD/bin/dos/bin2iso.exe -------------------------------------------------------------------------------- /bin/win32/bin2iso.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelortmann/bin2iso/HEAD/bin/win32/bin2iso.exe -------------------------------------------------------------------------------- /bin/win64/bin2iso.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelortmann/bin2iso/HEAD/bin/win64/bin2iso.exe -------------------------------------------------------------------------------- /bin2iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelortmann/bin2iso/HEAD/bin2iso.c --------------------------------------------------------------------------------