eeeeeeeeeeeeeeeeeeeeeeeeeee.../e.asm

18 lines
320 B
NASM

section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, msg
mov rdx, len
loop:
syscall
jmp loop
section .data
msg: db "e"
len: equ $ - msg