Luna/apps/app.asm
apio fd8a0175d9
All checks were successful
continuous-integration/drone/push Build is passing
Add a syscall infrastructure (our baby program can print to the console now!)
2023-01-05 22:39:56 +01:00

18 lines
249 B
NASM

section .text
global _start
_start:
mov rax, 1
mov rdi, message
int 42h
mov rax, 1
mov rdi, message2
int 42h
mov rax, 0
int 42h
section .rodata
message:
db "Hello!", 0xa, 0
message2:
db "I am an app", 0xa, 0