├── include ├── Constants.hpp ├── Flash.hpp ├── FlashController.hpp ├── FlashTranslationLayer.hpp ├── SSD.hpp └── TimingManager.hpp ├── makefile └── src ├── Flash.cpp ├── FlashController.cpp ├── FlashTranslationLayer.cpp ├── SSD.cpp ├── TimingManager.cpp └── main.cpp /include/Constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/include/Constants.hpp -------------------------------------------------------------------------------- /include/Flash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/include/Flash.hpp -------------------------------------------------------------------------------- /include/FlashController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/include/FlashController.hpp -------------------------------------------------------------------------------- /include/FlashTranslationLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/include/FlashTranslationLayer.hpp -------------------------------------------------------------------------------- /include/SSD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/include/SSD.hpp -------------------------------------------------------------------------------- /include/TimingManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/include/TimingManager.hpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/makefile -------------------------------------------------------------------------------- /src/Flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/src/Flash.cpp -------------------------------------------------------------------------------- /src/FlashController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/src/FlashController.cpp -------------------------------------------------------------------------------- /src/FlashTranslationLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/src/FlashTranslationLayer.cpp -------------------------------------------------------------------------------- /src/SSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/src/SSD.cpp -------------------------------------------------------------------------------- /src/TimingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/src/TimingManager.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityagupta1089/NAND-Flash/HEAD/src/main.cpp --------------------------------------------------------------------------------