blob: ae2235f27d4883fbad465adae9ec51067e2546b6 [file] [log] [blame]
section .rodata
fmt db "Hello, %s!", 10, 0
section .text
global print_hello:function
extern printf
print_hello:
mov rsi, rdi
lea rdi, [rel fmt]
jmp printf wrt ..plt