mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
10 lines
222 B
ArmAsm
10 lines
222 B
ArmAsm
|
|
/* $NetBSD: memcpy.S,v 1.4 2003/10/14 07:51:45 scw Exp $ */
|
||
|
|
|
||
|
|
#include <machine/asm.h>
|
||
|
|
__FBSDID("$FreeBSD$");
|
||
|
|
#if !defined(__XSCALE__) || defined(_STANDALONE)
|
||
|
|
#include "memcpy_arm.S"
|
||
|
|
#else
|
||
|
|
#include "memcpy_xscale.S"
|
||
|
|
#endif
|