29 lines
408 B
Markdown
29 lines
408 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`
|
|
|
|
### todo
|
|
|
|
- recycling allocator that wraps the bump allocator
|