Table of Contents

X16_COPY_MV

[x16]

(Defined in x16.bas)

The X16_COPY_MV subroutine copies an area of RAM to the VRAM.

Subroutine header

  SUB X16_COPY_MV (srcAddr AS WORD, targetAddr AS LONG, cntBytes AS WORD) _
  SHARED STATIC

Where

Example

  ' Copy 1024 bytes from RAM $4000 TO VRAM $12000
  CALL X16_COPY_MV ($4000, $12000, 1024)

Note

Interrupts will be disabled during copy.