├── .gitignore ├── README.md ├── images ├── image_0.75.png ├── setup.jpg └── tiled_small.jpg ├── src-experiment └── experiment.py ├── src-memcopy ├── Makefile ├── README.md ├── boot.S ├── io.c ├── io.h ├── kernel.c └── link.ld ├── src-module ├── Makefile ├── mona-big.tga ├── mona.tga └── ramrec.c └── src ├── Makefile ├── load.c ├── mona-big.tga └── mona.tga /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | load 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/README.md -------------------------------------------------------------------------------- /images/image_0.75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/images/image_0.75.png -------------------------------------------------------------------------------- /images/setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/images/setup.jpg -------------------------------------------------------------------------------- /images/tiled_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/images/tiled_small.jpg -------------------------------------------------------------------------------- /src-experiment/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-experiment/experiment.py -------------------------------------------------------------------------------- /src-memcopy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/Makefile -------------------------------------------------------------------------------- /src-memcopy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/README.md -------------------------------------------------------------------------------- /src-memcopy/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/boot.S -------------------------------------------------------------------------------- /src-memcopy/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/io.c -------------------------------------------------------------------------------- /src-memcopy/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/io.h -------------------------------------------------------------------------------- /src-memcopy/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/kernel.c -------------------------------------------------------------------------------- /src-memcopy/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-memcopy/link.ld -------------------------------------------------------------------------------- /src-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-module/Makefile -------------------------------------------------------------------------------- /src-module/mona-big.tga: -------------------------------------------------------------------------------- 1 | ../src/mona-big.tga -------------------------------------------------------------------------------- /src-module/mona.tga: -------------------------------------------------------------------------------- 1 | ../src/mona.tga -------------------------------------------------------------------------------- /src-module/ramrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src-module/ramrec.c -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src/load.c -------------------------------------------------------------------------------- /src/mona-big.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src/mona-big.tga -------------------------------------------------------------------------------- /src/mona.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfractuosity/ramrecovery/HEAD/src/mona.tga --------------------------------------------------------------------------------