Files
2022_WEBSITE_jipf/srcs/requirements/test/tools/hello.asm
2022-10-22 14:15:43 +02:00

17 lines
185 B
NASM

SECTION .data
msg: db "Hi World",10
len: equ $-msg
SECTION .text
global main
main:
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
mov ebx,0
mov eax,1
int 0x80