Compare commits

...

3 Commits

Author SHA1 Message Date
Kiril Kovachev
7498741388 Polish up strcpy code 2025-01-24 19:01:05 +00:00
Kiril Kovachev
d23173c8de Add .gitignore for build artifacts 2025-01-24 18:56:46 +00:00
Kiril Kovachev
5b95604383 Move driver code out of the library code 2025-01-24 18:55:26 +00:00
5 changed files with 28 additions and 21 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.o
a.out
build

View File

@ -1,8 +1,4 @@
.intel_syntax noprefix
.macro alloca size
sub rsp, \size
.endm
.include "lib/alloca.S"
.text

View File

@ -1,3 +1,5 @@
.include "lib/strcpy.S"
.intel_syntax noprefix
.globl _start
@ -5,22 +7,6 @@
.text
# String-copying routine.
# Commented-out lines would also return the starting address of the destination address.
strcpy:
# push rsi
.loop:
movb r10b, [rdi]
cmpb r10b, 0
je .end
movb [rsi], r10b
inc rdi
inc rsi
jmp .loop
.end:
# pop rax
ret
_start:
mov rdi, offset str2

5
lib/alloca.S Normal file
View File

@ -0,0 +1,5 @@
.intel_syntax noprefix
.macro alloca size
sub rsp, \size
.endm

17
lib/strcpy.S Normal file
View File

@ -0,0 +1,17 @@
.intel_syntax noprefix
.text
# String-copying routine. Strings should be null-terminated.
# Input: rdi = source string base, rsi = destination string base
# No check is done for buffer overflow.
strcpy:
movb r10b, [rdi]
cmpb r10b, 0
je .end
movb [rsi], r10b
inc rdi
inc rsi
jmp strcpy
.end:
ret