====== VMEMSET ====== [x16] //Defined in [[x16.bas]]// Fills an area in the VRAM with the given value. ===== Subroutine header ===== SUB VMEMSET (vAddr AS LONG, cntBytes AS WORD, value AS BYTE) SHARED STATIC ===== Example ===== INCLUDE "x16.bas" ' Clear the bitmap CALL VMEMSET(0, 11264, 0) ===== See also ===== * [[MEMCPYMV]] * [[MEMCPYVM]] * [[VPOKE]]