#include #include /* dclear() - fill the screen with a single color */ void dclear(uint16_t color) { dma_memset(gint_vram, (color << 16) | color, 396 * 224 * 2); return; }