Start to display BIOS information

This commit is contained in:
Jaby
2024-03-30 11:57:07 -05:00
committed by Jaby
parent 62f0bd4dbb
commit d97f7ffe2c
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) {