Print all BIOS information
This commit is contained in:
@@ -52,15 +52,16 @@ namespace BIOSInfo {
|
||||
const BIOSStringOffset bios_str_offset;
|
||||
const char*const display_str;
|
||||
FontSlider font_slider;
|
||||
} BIOSStringInfo[3] = {
|
||||
} BIOSStringInfo[] = {
|
||||
{.bios_str_offset = &SysCall::BIOSVersion::kernel_maker, .display_str = "Kernel-Maker"},
|
||||
{.bios_str_offset = &SysCall::BIOSVersion::version_str, .display_str = "Version"},
|
||||
{.bios_str_offset = &SysCall::BIOSVersion::gui_version, .display_str = "GUI-Version"},
|
||||
{.bios_str_offset = &SysCall::BIOSVersion::copyright, .display_str = "Copyright"}
|
||||
{.bios_str_offset = &SysCall::BIOSVersion::copyright, .display_str = "Copyright"},
|
||||
};
|
||||
|
||||
static GPU::TILE::Linked border_tiles[2] = {
|
||||
Make::TILE(Make::AreaI16(0, 0, TextOffset.x, GPU::Display::Height), GPU::Color24::Black()).linked(),
|
||||
Make::TILE(Make::AreaI16(GPU::Display::Width - TextOffset.x, 0, TextOffset.x, GPU::Display::Height), GPU::Color24::Black()).linked()
|
||||
Make::TILE(Make::AreaI16(0, 0, TextOffset.x, GPU::Display::Height - 32), GPU::Color24::Black()).linked(),
|
||||
Make::TILE(Make::AreaI16(GPU::Display::Width - TextOffset.x, 0, TextOffset.x, GPU::Display::Height - 32), GPU::Color24::Black()).linked()
|
||||
};
|
||||
|
||||
static SysCall::BIOSVersion setup() {
|
||||
|
Reference in New Issue
Block a user