├── parameters_name.txt ├── parameters_value.txt ├── pagemap.h ├── readme.txt ├── page.parameters ├── Makefile ├── ssd.h ├── license.txt ├── avlTree.h ├── flash.h ├── initialize.h ├── initialize.c ├── avlTree.c ├── ssd.c └── pagemap.c /parameters_name.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parameters_value.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pagemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaicheng/ssdsim/HEAD/pagemap.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaicheng/ssdsim/HEAD/readme.txt -------------------------------------------------------------------------------- /page.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaicheng/ssdsim/HEAD/page.parameters -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # ssdsim linux support 2 | all:ssd 3 | 4 | clean: 5 | rm -f ssd *.o *~ 6 | .PHONY: clean 7 | 8 | ssd: ssd.o avlTree.o flash.o initialize.o pagemap.o 9 | cc -g -o ssd ssd.o avlTree.o flash.o initialize.o pagemap.o 10 | ssd.o: flash.h initialize.h pagemap.h 11 | gcc -c -g ssd.c 12 | flash.o: pagemap.h 13 | gcc -c -g flash.c 14 | initialize.o: avlTree.h pagemap.h 15 | gcc -c -g initialize.c 16 | pagemap.o: initialize.h 17 | gcc -c -g pagemap.c 18 | avlTree.o: 19 | gcc -c -g avlTree.c 20 | 21 | -------------------------------------------------------------------------------- /ssd.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************************************************************** 2 | This project was supported by the National Basic Research 973 Program of China under Grant No.2011CB302301 3 | Huazhong University of Science and Technology (HUST) Wuhan National Laboratory for Optoelectronics 4 | 5 | FileName: ssd.h 6 | Author: Hu Yang Version: 2.1 Date:2011/12/02 7 | Description: 8 | 9 | History: 10 |