mirror of
https://github.com/tailix/kernel.git
synced 2024-11-27 11:24:34 -05: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
|