CmdMemCpy
From MCS Wiki AVR
(Difference between revisions)
Admin (Talk | contribs)
(Created page with "= <span class="f_Header">Action</span> = Copy a block of memory. <span style="font-family: Arial;"> </span> <span style="font-family: Arial;"> </span> = <span cl...")
(Created page with "= <span class="f_Header">Action</span> = Copy a block of memory. <span style="font-family: Arial;"> </span> <span style="font-family: Arial;"> </span> = <span cl...")
Latest revision as of 19:18, 12 December 2014
Contents |
Action
Copy a block of memory.
Syntax
CmdMemCpy dst, src, num
Remarks
dst |
address of the destination memory block |
src |
address of the source memory block |
num |
number of bytes to copy |
The completion of this function is detected when the value of REG_CMD_READ is equal to REG_CMD_WRITE.
Example
' Pseudocode ' To copy 1K byte of memory from 0 to &H8000 CmdMemCpy &H8000, 0, 1024
Languages | English |
---|