From bc93a0c4ca27327e7280f4dd8e15ccf2d37e9a71 Mon Sep 17 00:00:00 2001 From: Kwarde Date: Mon, 30 Jun 2025 23:03:39 +0200 Subject: [PATCH] Fix comment (opcode -> instruction) --- src/string.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string.asm b/src/string.asm index 29b7cb6..89458a7 100644 --- a/src/string.asm +++ b/src/string.asm @@ -121,7 +121,7 @@ strclr: ;----- strlclr(char* str, int size) -----; ; Replaces characters of a string with \0, using arg size ; DANGEROUS FUNCTION, it might exceed string boundaries if used incorrectly. Use strclr() instead! -; Function has no return value, rax will be 0 (0x0 stored in rax for opcode stosb) +; Function has no return value, rax will be 0 (0x0 stored in rax for instruction stosb) strlclr: mov rcx, rsi xor rax, rax