Luna/apps/app.asm
apio f2cc797599
All checks were successful
continuous-integration/drone/push Build is passing
Add a simple ELF loader
2022-12-23 13:09:21 +01:00

18 lines
235 B
NASM

section .text
global _start
_start:
mov eax, ecx
push rdx
mov eax, 1
mov edi, hello_world
mov esi, 14
int 42h
nop
section .rodata
hello_world:
db 'Hello, world!', 0xa, 0
section .bss
array:
resb 10