This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to use movc in keil?

Hi,
Using at89c51 i want some data to copy from program memory to external Data memory..
without using memcopy()...
any idea ?

Parents
  • i want some data to copy from program memory to external Data memory..
    without using memcopy()...
    any idea ?


    • Use pointers.
    • Use the absacc.h macros.
    • Use and external, programmable DMA controller.
    • Use dual-port RAM, connect the 8051 to the PC-BUS and have the PC move it.
    • Create a structure that contains the data and do a structure assignment (that probably calls memcpy).

    Jon

Reply
  • i want some data to copy from program memory to external Data memory..
    without using memcopy()...
    any idea ?


    • Use pointers.
    • Use the absacc.h macros.
    • Use and external, programmable DMA controller.
    • Use dual-port RAM, connect the 8051 to the PC-BUS and have the PC move it.
    • Create a structure that contains the data and do a structure assignment (that probably calls memcpy).

    Jon

Children