Files
Espresso/drivers/vga/vga.c

13 lines
236 B
C
Raw Normal View History

2025-05-28 14:41:02 -05:00
#include <stddef.h>
#include <vga/vga.h>
2026-02-12 20:33:46 -06:00
uint8_t vga_entry_color(enum vga_color fg, enum vga_color bg)
{
return fg | bg << 4;
2025-05-28 14:41:02 -05:00
}
2026-02-12 20:33:46 -06:00
uint16_t vga_entry(unsigned char uc, uint8_t color)
{
return (uint16_t) uc | (uint16_t) color << 8;
2025-05-28 14:41:02 -05:00
}