Hi, Using at89c51 i want some data to copy from program memory to external Data memory.. without using memcopy()... any idea ?
For a single byte:
code unsigned char code_var _at_ 0x1234; xdata unsigned char xdata_var _at_ 0x4321; xdata_var = code_var;
What's wrong with using memcpy()?
i want some data to copy from program memory to external Data memory.. without using memcopy()... any idea ?
View all questions in Keil forum