31 lines
462 B
Markdown
31 lines
462 B
Markdown
## hobby kernel in zig
|
|
|
|
slowly porting from rust.
|
|
|
|
### features
|
|
|
|
- vga frame buffer
|
|
- ps2 keyboard driver
|
|
- interrupts
|
|
- terminal console
|
|
- lspci
|
|
|
|
### dependencies
|
|
|
|
`zig` compiler
|
|
|
|
### compile
|
|
|
|
`zig build` compiles and links the multiboot kernel, without a bootloader.
|
|
|
|
### test
|
|
|
|
`./qemu.sh start`
|
|
`./qemu.sh monitor`
|
|
`./qemu.sh gdb`
|
|
|
|
# Notes
|
|
|
|
## interrupts
|
|
|
|
`interrupt` -> `idt[n]` -> `isrN` -> `isrDispatch` -> `handlers[n]` (default `unhandled()`)
|