Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/nasm/A.asm
nihonium 70c3756257
A
2022-03-28 16:43:00 +03:00

17 lines
220 B
NASM

extern printf
;default rel
global main
section .text
main:
;int 3
;db 0xcc
;lea eax, [hello]
push hello
call printf
add esp, 4
xor eax, eax
ret
section .data
hello db "Liberté, égalité, fraternité!", 10, 0