├── .gitignore ├── .kdev4 └── Processor-Project.kdev4 ├── LICENSE ├── Makefile ├── Processor-Project.kdev4 ├── README.md ├── a.out ├── include ├── CPU.h ├── ISA.h ├── Virtual_memory.h ├── error_handler.h ├── init.h └── proc_defines.h ├── instructions.txt ├── src ├── CPU.cpp ├── ISA.cpp ├── Virtual_memory.cpp ├── error_handler.cpp ├── init.cpp └── main.cpp ├── test └── test.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | ins2.txt 3 | .gcc-flags.json 4 | Processor 5 | -------------------------------------------------------------------------------- /.kdev4/Processor-Project.kdev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/.kdev4/Processor-Project.kdev4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/Makefile -------------------------------------------------------------------------------- /Processor-Project.kdev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/Processor-Project.kdev4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/README.md -------------------------------------------------------------------------------- /a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/a.out -------------------------------------------------------------------------------- /include/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/include/CPU.h -------------------------------------------------------------------------------- /include/ISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/include/ISA.h -------------------------------------------------------------------------------- /include/Virtual_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/include/Virtual_memory.h -------------------------------------------------------------------------------- /include/error_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/include/error_handler.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/include/init.h -------------------------------------------------------------------------------- /include/proc_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/include/proc_defines.h -------------------------------------------------------------------------------- /instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/instructions.txt -------------------------------------------------------------------------------- /src/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/src/CPU.cpp -------------------------------------------------------------------------------- /src/ISA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/src/ISA.cpp -------------------------------------------------------------------------------- /src/Virtual_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/src/Virtual_memory.cpp -------------------------------------------------------------------------------- /src/error_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/src/error_handler.cpp -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/test -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-streanga/Processor-Project/HEAD/test.txt --------------------------------------------------------------------------------