diff --git a/ASM/Colleen/Colleen b/ASM/Colleen/Colleen index 2c71493..6c87a12 100755 Binary files a/ASM/Colleen/Colleen and b/ASM/Colleen/Colleen differ diff --git a/ASM/Colleen/Colleen.s b/ASM/Colleen/Colleen.s index bc42dfe..2f0f9e9 100644 --- a/ASM/Colleen/Colleen.s +++ b/ASM/Colleen/Colleen.s @@ -4,14 +4,17 @@ global main extern printf section .data - src db "La source a venir" + 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