diff options
| author | onelin <oscar@nelin.dk> | 2026-06-10 04:58:13 +0000 |
|---|---|---|
| committer | onelin <oscar@nelin.dk> | 2026-06-10 04:58:13 +0000 |
| commit | 7cc1a2e6ccc8f4a87e73c35672e7bb973e965470 (patch) | |
| tree | ce65f72b384f9d75d15cc68ed2f0225e2b21ae0b /tiny.s | |
Initial commit
Diffstat (limited to 'tiny.s')
| -rw-r--r-- | tiny.s | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +BITS 64 +section .text + global _start + +_start: + ; 60 = syscall exit + mov eax, ecx + + ; rdi is exit code + mov rdi, 0x41 + syscall |
