www.pudn.com > H265+_C64X_2008.8.rar > evmdm642_flash_read.c
/* * Copyright 2003 by Spectrum Digital Incorporated. * All rights reserved. Property of Spectrum Digital Incorporated. */ /* * ======== evmdm642_flash_read.c ======== * EVMDM642_FLASH_read() implementation */ #include#include #include #include /* Read data from a data range in Flash */ void EVMDM642_FLASH_read(Uint32 src, Uint32 dst, Uint32 length) { Uint8 *psrc, *pdst; Uint32 i; /* Establish source and destination */ psrc = (Uint8 *)src; pdst = (Uint8 *)dst; for (i = 0; i < length; i++) { *pdst++ = *psrc++; } }