From 7cc1a2e6ccc8f4a87e73c35672e7bb973e965470 Mon Sep 17 00:00:00 2001 From: onelin Date: Wed, 10 Jun 2026 06:58:13 +0200 Subject: Initial commit --- tiny.s | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tiny.s (limited to 'tiny.s') diff --git a/tiny.s b/tiny.s new file mode 100644 index 0000000..1d3a901 --- /dev/null +++ b/tiny.s @@ -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 -- cgit v1.3