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