HomeSort by: relevance | last modified time | path
    Searched defs:attrbyte (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/dev/ic/
pcdisplay_subr.c 303 uint8_t attrbyte; local in function:pcdisplay_getwschar
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; local in function:pcdisplay_putwschar
341 attrbyte = wschar->background & 0x07;
342 if (wschar->flags & WSDISPLAY_CHAR_BLINK) attrbyte |= 0x08;
343 attrbyte <<= 4
    [all...]

Completed in 31 milliseconds