And all kernel specific source files live in src/kernel like they should have to begin with. This hack lets everything live in the same file during compilation, but allows code to actually live in separate files for development.
As long as we maintain proper practices for things, there should be no issue with treating src/kernel files like any other C file.
kernel.c
is now this:And all kernel specific source files live in
src/kernel
like they should have to begin with. This hack lets everything live in the same file during compilation, but allows code to actually live in separate files for development.As long as we maintain proper practices for things, there should be no issue with treating
src/kernel
files like any other C file.