diff options
| author | onelin <oscar@nelin.dk> | 2026-06-13 00:01:19 +0000 |
|---|---|---|
| committer | onelin <oscar@nelin.dk> | 2026-06-13 00:01:19 +0000 |
| commit | 1c31d1024c227979d5e4df7dd555fa866562c044 (patch) | |
| tree | 5f00d4f4311f48ad814616c89e2732f57fadbffe /tiny.s | |
| parent | 9f871ef0e0f27f795f5df7d842c7c205b6faa05f (diff) | |
Diffstat (limited to 'tiny.s')
| -rw-r--r-- | tiny.s | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,8 +4,9 @@ section .text _start: ; 60 = syscall exit - mov eax, ecx + xor rax, rax + mov ax, 0x1 ; rdi is exit code - mov rdi, 0x41 + mov edi, 0x41 syscall |
