Add BootImage to second DisplayBuffer during boot

This commit is contained in:
Jaby Blubb
2023-04-30 14:18:11 +02:00
parent 169c53e434
commit 60049cc9e5
4 changed files with 33 additions and 4 deletions

View File

@@ -106,6 +106,10 @@ namespace JabyEngine {
return {(0x02 << 24) | color.raw()};
}
static constexpr GP0_t VRAM2VRAM_Blitting() {
return {(0b100u << 29)};
}
static constexpr GP0_t CPU2VRAM_Blitting() {
return {(0b101u << 29)};
}