An open API service indexing awesome lists of open source software.

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

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
```