void syMemCopy2( dst, src, num )
void *dst
const void *src
Sint32 num
dst コピー先のポインタ src コピー元のポインタ num ワード数
なし
メインメモリ内でメモリ内容のコピーを行います。srcからdstにnumワードコピーします。
Uint16 dst[256]; Uint16 src[256]; /* Copies 256 words */ syMemCopy2(dst,src,256);
syMemCopy() メモリコピー(バイト単位) syMemCopy4() メモリコピー(ロング単位) syMemCopy8() メモリコピー(8バイト単位) syMemCopy16() メモリコピー(16バイト単位) syMemCopy32() メモリコピー(32バイト単位) syMemCopySQ() メモリコピー(ストアキューの使用)