Making ComplexBitMap a POD part 1

This commit is contained in:
2022-09-11 11:36:51 +02:00
parent 9cb0b70308
commit d30a975725
9 changed files with 386 additions and 238 deletions

View File

@@ -58,27 +58,27 @@ namespace DMA {
static constexpr auto ToMainRAM = !FromMainRAM;
static constexpr CHCHR StartMDECin() {
return CHCHR(0x01000201);
return ComplexBitMap{0x01000201};
}
static constexpr CHCHR StartMDECout() {
return CHCHR(0x01000200);
return ComplexBitMap{0x01000200};
}
static constexpr CHCHR StartGPUReceive() {
return CHCHR(0x01000201);
return ComplexBitMap{0x01000201};
}
static constexpr CHCHR StartCDROM() {
return CHCHR(0x11000000);
return ComplexBitMap{0x11000000};
}
static constexpr CHCHR StartSPUReceive() {
return CHCHR(0x01000201);
return ComplexBitMap{0x01000201};
}
static constexpr CHCHR StartOTC() {
return CHCHR(0x11000002);
return ComplexBitMap{0x11000002};
}
};