Lines Matching refs:fgcol
69 uint8_t fgcol:4; member
468 printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch); in console_print_text_attributes()
479 unsigned int fgcol, bgcol; in vga_putcharxy() local
487 bgcol = color_table[t_attrib->bold][t_attrib->fgcol]; in vga_putcharxy()
488 fgcol = color_table[t_attrib->bold][t_attrib->bgcol]; in vga_putcharxy()
490 fgcol = color_table[t_attrib->bold][t_attrib->fgcol]; in vga_putcharxy()
499 xorcol = bgcol ^ fgcol; in vga_putcharxy()
817 s->t_attrib.fgcol=COLOR_BLACK; in console_handle_escape()
820 s->t_attrib.fgcol=COLOR_RED; in console_handle_escape()
823 s->t_attrib.fgcol=COLOR_GREEN; in console_handle_escape()
826 s->t_attrib.fgcol=COLOR_YELLOW; in console_handle_escape()
829 s->t_attrib.fgcol=COLOR_BLUE; in console_handle_escape()
832 s->t_attrib.fgcol=COLOR_MAGENTA; in console_handle_escape()
835 s->t_attrib.fgcol=COLOR_CYAN; in console_handle_escape()
838 s->t_attrib.fgcol=COLOR_WHITE; in console_handle_escape()
1262 (s->cells[src].t_attrib.fgcol << 12) | in text_console_update()
1535 s->t_attrib_default.fgcol = COLOR_WHITE; in text_console_do_init()