mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
11 lines
120 B
NASM
11 lines
120 B
NASM
[BITS 32]
|
|
|
|
main:
|
|
mov eax, 123
|
|
int 0x80
|
|
|
|
mov eax, 0 ; exit
|
|
mov ebx, 0 ; error code
|
|
int 0x80
|
|
|
|
ret
|