Home | History | Annotate | Download | only in ic

Lines Matching defs:attrbyte

303 	uint8_t attrbyte;
319 attrbyte = (chardata & 0xFF00) >> 8;
320 if ((attrbyte & 0x08)) wschar->flags |= WSDISPLAY_CHAR_BRIGHT;
321 if ((attrbyte & 0x80)) wschar->flags |= WSDISPLAY_CHAR_BLINK;
322 wschar->foreground = attrbyte & 0x07;
323 wschar->background = (attrbyte >> 4) & 0x07;
333 uint8_t attrbyte;
341 attrbyte = wschar->background & 0x07;
342 if (wschar->flags & WSDISPLAY_CHAR_BLINK) attrbyte |= 0x08;
343 attrbyte <<= 4;
344 attrbyte |= wschar->foreground & 0x07;
345 if (wschar->flags & WSDISPLAY_CHAR_BRIGHT) attrbyte |= 0x08;
346 chardata = (attrbyte << 8) | wschar->letter;