Finish detecting BIOS type

This commit is contained in:
Jaby
2024-04-01 16:43:54 -05:00
parent 781b28ecd7
commit fbaaf52224
7 changed files with 150 additions and 142 deletions

View File

@@ -83,6 +83,14 @@ namespace JabyEngine {
static constexpr T Yellow(uint8_t base = 0xFF) {
return T::from_rgb(base, base, 0x0);
}
static constexpr T Purple(uint8_t base = 0xFF) {
return T::from_rgb(base, 0x0, base);
}
static constexpr T Turquoise(uint8_t base = 0xFF) {
return T::from_rgb(0x0, base, base);
}
};
}