[fix][common] using romapi memcpy instead

This commit is contained in:
jzlv 2021-07-28 15:04:00 +08:00
parent 97df783484
commit 789618b2d2

View File

@ -96,7 +96,7 @@ void *ATTR_TCM_SECTION arch_memcpy_fast(void *pdst, const void *psrc, uint32_t n
i++;
}
} else {
memcpy(dst, src, n);
arch_memcpy(dst, src, n);
}
return dst;