bee7416b08
* prints hello world * Builds with the zig build system
10 lines
105 B
NASM
10 lines
105 B
NASM
[bits 32]
|
|
[section .text]
|
|
|
|
[extern kernel_main]
|
|
start:
|
|
call kernel_main
|
|
halt:
|
|
cli
|
|
hlt
|
|
jmp halt
|