From e5b7982d37bfd651091feb4085f7348f415e4199 Mon Sep 17 00:00:00 2001 From: nub31 Date: Mon, 5 May 2025 16:38:41 +0200 Subject: [PATCH] rename strcmp --- std/runtime.asm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/std/runtime.asm b/std/runtime.asm index f4c6102..706777d 100644 --- a/std/runtime.asm +++ b/std/runtime.asm @@ -9,10 +9,9 @@ _start: mov rdi, 0 syscall -global base_str_cmp - +global nub_strcmp section .text -base_str_cmp: +nub_strcmp: xor rdx, rdx .loop: mov al, [rsi + rdx]