MaxwellDMA: Implement BlockLinear to BlockLinear copies.

This commit is contained in:
Fernando Sahmkow
2022-11-06 12:50:54 +01:00
parent 5fbd6954ef
commit daf2ef8f1c
2 changed files with 69 additions and 1 deletions

View File

@ -223,6 +223,8 @@ private:
void CopyPitchToBlockLinear();
void CopyBlockLinearToBlockLinear();
void FastCopyBlockLinearToPitch();
void ReleaseSemaphore();
@ -234,6 +236,7 @@ private:
std::vector<u8> read_buffer;
std::vector<u8> write_buffer;
std::vector<u8> intermediate_buffer;
static constexpr std::size_t NUM_REGS = 0x800;
struct Regs {