56 void memCopy(uint16_t *srcStartAddr,uint16_t *srcEndAddr,uint16_t *dstAddr)
59 while(srcStartAddr <= srcEndAddr)
61 *dstAddr++ = *srcStartAddr++;
void memCopy(uint16_t *srcStartAddr, uint16_t *srcEndAddr, uint16_t *dstAddr)
Copies a block of memory from the source address to the destination address.
Contains the public interface to the memory copy routines.