xref: /DragonOS/kernel/src/libs/font/font_type/vga8x8.rs (revision 52bcb59e9286def2b66d766f6bf6f46745795ec8)
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