Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-06 | shared assert.h | dzwdz | |
2022-07-16 | amd64: barely boot into kernel code | dzwdz | |
2022-05-03 | kernel: stacktraces on panic() | dzwdz | |
2022-04-14 | kernel: port init's `printf` implementation | dzwdz | |
2021-09-21 | fix the assert kernel panic message | dzwdz | |
2021-09-20 | create a few specialized panic()s | dzwdz | |
thanks to this i can tell which ones are placeholders, and which ones should stay | |||
2021-08-22 | kernel: implement assert | dzwdz | |
2021-08-09 | rename `log_` to `tty_`, `tty_` to `vga_` | dzwdz | |
2021-08-03 | put the NUM2STR macro in util.h | dzwdz | |
i'll use it outside of panic.h | |||
2021-07-18 | move all kernel sources to src/kernel/ | dzwdz | |
2021-07-10 | abstract away logging | dzwdz | |
Now, the kernel only interfaces with the architecture dependent stuff via functions declared in generic.h. I'll write a linter enforcing this soon. | |||
2021-07-10 | a sensible source structure | dzwdz | |
The idea is that src/kernel/ is only allowed to interface with the hardware using whatever's defined in src/arch/generic.h. I'll probably write a small script for checking this later on. This is a giant commit so I've probably fucked something up. It boots fine on Bochs and QEMU, so at least there's that. | |||
2021-07-10 | separate the source code from object files; more modular Makefile | dzwdz | |