User Activity

these are the functions__asm void my_strcpy(const char *src, char *dst){loop   LDRB r2, [r0] ; Load byte into r2 from memory pointed to by r0 (src pointer) ADDS r0, #1 ; Increment src pointer   STRB r2, [r1] ; Store byte in r2 into memory pointed ...