Lines Matching defs:colram
261 static void a64_compress_colram(unsigned char *buf, int *charmap, uint8_t *colram)
268 temp = colram[charmap[a + 0x000]] << 0;
269 temp |= colram[charmap[a + 0x100]] << 1;
270 temp |= colram[charmap[a + 0x200]] << 2;
271 if (a < 0xe8) temp |= colram[charmap[a + 0x300]] << 3;
290 uint8_t *colram = c->mc_colram;
348 render_charset(avctx, buf, colram);
367 /* compress and copy colram to buf */
369 a64_compress_colram(buf, charmap, colram);
413 .p.long_name = NULL_IF_CONFIG_SMALL("Multicolor charset for Commodore 64, extended with 5th color (colram)"),