├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ent.plist ├── re └── AppleEmbeddedSimpleSPINORFlasherDriverUC.cpp └── src └── nordump.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /nordump 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siguza/nordump/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siguza/nordump/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siguza/nordump/HEAD/README.md -------------------------------------------------------------------------------- /ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siguza/nordump/HEAD/ent.plist -------------------------------------------------------------------------------- /re/AppleEmbeddedSimpleSPINORFlasherDriverUC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siguza/nordump/HEAD/re/AppleEmbeddedSimpleSPINORFlasherDriverUC.cpp -------------------------------------------------------------------------------- /src/nordump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siguza/nordump/HEAD/src/nordump.c --------------------------------------------------------------------------------