Files
hexplor e10375126d update
2026-05-11 20:38:29 +02:00

21 lines
328 B
ArmAsm

BITS 64;
global main
extern printf
section .data
src db "La source a venir", 10, 0
section .text
main:
call affiche_source
ret
affiche_source:
lea rdi, [src] ; 1er argument: format
;lea rsi, [name] ; 2e argument: %s
call printf
ret
section .note.GNU-stack noalloc noexec nowrite progbits