Contents |
Effect
Copies a part of the RAM to the VRAM.
Syntax
CALL MOVEMV (<RAM-StartAddress>, <VRAM-StartAddress>,<Bytes>)
Parameters
<RAM-StartAddress> must be between &H8000 and &HFFFF.
<VRAM-StartAddress> can vary between &H0000 and &HFFFF.
<Bytes> is a number to specify how many bytes need to be copied, starting at the specified <RAM-StartAddress> and being copied with beginning at the specified <VRAM-StartAddress>.
Example
CALL MOVEMV (&HA000,&H4000,100)
Related to
CALL FILLRAM, CALL FILLVRM, CALL MOVEVM, PEEK, VPOKE