Author: VickynathanVickynathan
Date: May 8, 2008 00:20
The following code snippet works. I wonder how ? ( this is a code for
microcontroller )
void main (void){
unsigned char xdata * data pwrite;
unsigned char code * data pread;
unsigned char test_array [16];
unsigned char temp;
....
....
....
pwrite = (unsigned char xdata *) Scratch_Flash_Addr ; // I have
never seen such an initialization ??
pread = my_array ;
.....
.....
|