tianole/arch/x86/kernel/screen_font.h
Microindole 11a1a8234b
Some checks failed
check / build-and-boot (push) Has been cancelled
kernel: add framebuffer early console and tighten wait queues
2026-05-13 11:42:24 +08:00

12 lines
199 B
C

#ifndef X86_KERNEL_SCREEN_FONT_H
#define X86_KERNEL_SCREEN_FONT_H
#include <stdint.h>
#define SCREEN_FONT_WIDTH 5u
#define SCREEN_FONT_HEIGHT 7u
const uint8_t *screen_font_glyph(char ch);
#endif