Add BootImage to second DisplayBuffer during boot

This commit is contained in:
2023-04-30 14:18:11 +02:00
parent ad18c89c0b
commit 73a0245b0d
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)};
}