The plan right now is to design a single threaded custom OS for arm64 arch and launced on Qemu. No graphics GUI for now.
#Simple thing I want to accomplish#
- scheduling
- mmaping
- unmapping
- resource allocation
- context switch
- file system on ram, RAMFS
-However when desiging this i want to make sure that the program gets executed as fast as possible since it is a single threaded system.
-Others for now is not needed.
->I want this to be the start.