This commit is contained in:
hexplor
2026-05-11 16:41:13 +02:00
parent b030981073
commit 8c3f9f7940
3 changed files with 37 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
BITS 64;
global main
extern printf
section .data
src db "La source a venir"
section .text
main:
call affiche_source
affiche_source:
lea rdi, [src] ; 1er argument: format
;lea rsi, [name] ; 2e argument: %s
call printf