Display BIOS date correctly

This commit is contained in:
2024-03-30 12:36:23 -05:00
parent 5b53383d80
commit b35a391887
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;
};