summaryrefslogtreecommitdiff
path: root/src/kernel/panic.h
AgeCommit message (Collapse)Author
2022-08-06shared assert.hdzwdz
2022-07-16amd64: barely boot into kernel codedzwdz
2022-05-03kernel: stacktraces on panic()dzwdz
2022-04-14kernel: port init's `printf` implementationdzwdz
2021-09-21fix the assert kernel panic messagedzwdz
2021-09-20create a few specialized panic()sdzwdz
thanks to this i can tell which ones are placeholders, and which ones should stay
2021-08-22kernel: implement assertdzwdz
2021-08-09rename `log_` to `tty_`, `tty_` to `vga_`dzwdz
2021-08-03put the NUM2STR macro in util.hdzwdz
i'll use it outside of panic.h
2021-07-18move all kernel sources to src/kernel/dzwdz
2021-07-10abstract away loggingdzwdz
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-10a sensible source structuredzwdz
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-10separate the source code from object files; more modular Makefiledzwdz