├── .gitignore ├── Makefile ├── README.md ├── cpukeys.c ├── crypto.c ├── crypto.h ├── dump_patch.c ├── file_io.c ├── filefmt.c ├── fprom.c ├── fprom_data.c ├── opt_cipher.s ├── patchfile.c ├── patchfile.h ├── patchtools.c ├── patchtools.h └── rotate.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | patchtools 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/README.md -------------------------------------------------------------------------------- /cpukeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/cpukeys.c -------------------------------------------------------------------------------- /crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/crypto.c -------------------------------------------------------------------------------- /crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/crypto.h -------------------------------------------------------------------------------- /dump_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/dump_patch.c -------------------------------------------------------------------------------- /file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/file_io.c -------------------------------------------------------------------------------- /filefmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/filefmt.c -------------------------------------------------------------------------------- /fprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/fprom.c -------------------------------------------------------------------------------- /fprom_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/fprom_data.c -------------------------------------------------------------------------------- /opt_cipher.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/opt_cipher.s -------------------------------------------------------------------------------- /patchfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/patchfile.c -------------------------------------------------------------------------------- /patchfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/patchfile.h -------------------------------------------------------------------------------- /patchtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/patchtools.c -------------------------------------------------------------------------------- /patchtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/patchtools.h -------------------------------------------------------------------------------- /rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbjornx/patchtools_pub/HEAD/rotate.h --------------------------------------------------------------------------------