Description
Currently, the entry point of the kernel kernel.c file is messy. A cleanup needs to be made.
A refactor of kernel_main() needs to be made to only call initialization and debugger/testing functions. The switch case should be moved to its own function, and even potentially move everything to their own files. kernel.c should potentially just call functions, nothing else.
Description
Currently, the entry point of the kernel
kernel.cfile is messy. A cleanup needs to be made.A refactor of
kernel_main()needs to be made to only call initialization and debugger/testing functions. The switch case should be moved to its own function, and even potentially move everything to their own files.kernel.cshould potentially just call functions, nothing else.