kvisc/ka/crt/mem/memcpy.k

21 lines
312 B
Plaintext
Raw Normal View History

2019-07-22 14:41:50 +02:00
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
;
; void memcpy(void *, const void *, int)
;
memcpy:
mov rcx, ax2
ret.cxz
.l:
sub rdx, ax2, rcx
mov rax, b[ax1+rdx]
mov b[ax0+rdx], rax
loop .l
ret