mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
12 lines
142 B
NASM
12 lines
142 B
NASM
main:
|
|
mov eax, 512
|
|
int 0x80
|
|
|
|
mov eax, 35000
|
|
int 0x80
|
|
|
|
mov eax, 0 ; exit
|
|
mov ebx, 0 ; error code
|
|
int 0x80
|
|
|
|
ret
|