Display BIOS date correctly

This commit is contained in:
Jaby
2024-03-30 12:36:23 -05:00
parent f2e5bbe369
commit 4dde54f23f
4 changed files with 35 additions and 4 deletions

View File

@@ -56,7 +56,11 @@ namespace JabyEngine {
#pragma pack(pop)
struct BIOSVersion {
uint32_t date_bcd;
struct {
uint8_t day;
uint8_t month;
uint16_t year;
} date;
const char* kernel_maker;
const char* gui_version;
};