This commit is contained in:
nub31
2025-06-12 23:57:59 +02:00
parent 705c83c935
commit 95dd7a1399
69 changed files with 14 additions and 28 deletions

View File

@@ -0,0 +1,14 @@
.intel_syntax noprefix
.section .text
# func nub_panic(message: ^u8, message_length: u64): void
.global nub_panic
nub_panic:
mov rdx, rsi
mov rsi, rdi
mov rax, 1
mov rdi, 2
syscall
mov rax, 60
mov rdi, 101
syscall