├── .gitignore ├── LICENSE ├── PiPROM.c ├── README.md ├── XboxI2C.c ├── XboxI2C.h ├── images ├── i2c_xbox.png └── lpc_pinouts.png ├── makefile └── obj └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/LICENSE -------------------------------------------------------------------------------- /PiPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/PiPROM.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/README.md -------------------------------------------------------------------------------- /XboxI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/XboxI2C.c -------------------------------------------------------------------------------- /XboxI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/XboxI2C.h -------------------------------------------------------------------------------- /images/i2c_xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/images/i2c_xbox.png -------------------------------------------------------------------------------- /images/lpc_pinouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/images/lpc_pinouts.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/makefile -------------------------------------------------------------------------------- /obj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/PiPROM/HEAD/obj/.gitignore --------------------------------------------------------------------------------