Start to display BIOS information

This commit is contained in:
2024-03-30 11:57:07 -05:00
parent a8fafdc32e
commit 5b53383d80
6 changed files with 132 additions and 6 deletions

View File

@@ -55,6 +55,14 @@ namespace JabyEngine {
};
#pragma pack(pop)
struct BIOSVersion {
uint32_t date_bcd;
const char* kernel_maker;
const char* gui_version;
};
BIOSVersion get_bios_version();
#define __syscall_function_cast(table, ...) reinterpret_cast<__VA_ARGS__>(table)
static __always_inline void* memcpy(void *dst, const void *src, size_t len) {