Fix comment (opcode -> instruction)
This commit is contained in:
@ -121,7 +121,7 @@ strclr:
|
|||||||
;----- strlclr(char* str, int size) -----;
|
;----- strlclr(char* str, int size) -----;
|
||||||
; Replaces characters of a string with \0, using arg size
|
; Replaces characters of a string with \0, using arg size
|
||||||
; <!> DANGEROUS FUNCTION, it might exceed string boundaries if used incorrectly. Use strclr() instead!
|
; <!> 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:
|
strlclr:
|
||||||
mov rcx, rsi
|
mov rcx, rsi
|
||||||
xor rax, rax
|
xor rax, rax
|
||||||
|
Reference in New Issue
Block a user