xref: /DragonOS/kernel/src/libs/font/font_type/vga8x8.rs (revision 1074eb34e784aa2adfc5b9e0d89fa4b7e6ea03ef)
1 use crate::libs::font::FontDesc;
2 
3 #[allow(dead_code)]
4 pub const FONT_VGA_8X8: FontDesc = FontDesc {
5     index: 0,
6     name: "VGA8x8",
7     width: 8,
8     height: 8,
9     char_count: 256,
10     data: include_bytes!("../bin/VGA_8X8.bytes"),
11 };
12