https://github.com/gthvn1/zigos
An experimental micro kernel written in Zig
https://github.com/gthvn1/zigos
microkernel x86 zig
Last synced: 9 days ago
JSON representation
An experimental micro kernel written in Zig
- Host: GitHub
- URL: https://github.com/gthvn1/zigos
- Owner: gthvn1
- License: gpl-3.0
- Created: 2023-02-07T10:49:48.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-12-24T11:13:02.000Z (about 1 month ago)
- Last Synced: 2025-12-26T00:49:26.608Z (about 1 month ago)
- Topics: microkernel, x86, zig
- Language: Zig
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# ZigOS
## Build
- `zig build`
## Generate the ISO
- `zig build iso`
## Run & Debug
- To quit Qemu: `Ctrl-A x`
### Run in Qemu
- `zig build run`
### Run and wait for gdb
- `zig build run -Dgdb`
- From another terminal:
```sh
gdb ./zig-out/bin/kernel
(gdb) target remote localhost:1234
```