xref: /DragonOS/kernel/src/libs/font/font_type/vga8x16.rs (revision dfe53cf087ef4c7b6db63d992906b062dc63e93f)
1 use crate::libs::font::FontDesc;
2 
3 pub const FONT_VGA_8X16: FontDesc = FontDesc {
4     index: 1,
5     name: "VGA8x16",
6     width: 8,
7     height: 16,
8     char_count: 256,
9     data: include_bytes!("../bin/VGA_8X16.bytes"),
10 };
11