1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/modules/dummy2.asm

12 lines
120 B
NASM
Raw Normal View History

2017-11-05 12:32:14 -05:00
[BITS 32]
2017-11-05 04:56:53 -05:00
main:
2017-11-05 13:24:19 -05:00
mov eax, 456
2017-11-05 04:56:53 -05:00
int 0x80
2017-11-05 12:15:34 -05:00
mov eax, 0 ; exit
mov ebx, 0 ; error code
int 0x80
2017-11-05 04:56:53 -05:00
ret