Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:47

0001 /*
0002  * Move the copy out of the Init5235 file because gcc is broken.
0003  */
0004 
0005 #include <stdint.h>
0006 
0007 void CopyVectors(const uint32_t* old, uint32_t* new);
0008 
0009 void CopyVectors(const uint32_t* old, uint32_t* new)
0010 {
0011     int v = 0;
0012     while (v < 256)
0013     {
0014         *new = *old;
0015         ++v;
0016         ++new;
0017         ++old;
0018     }
0019 }