mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 00:35:46 -04:00
DMA: Simplify address masking
This commit is contained in:
@ -49,7 +49,8 @@ public:
|
||||
void SetGPU(GPU* gpu) { m_gpu = gpu; }
|
||||
|
||||
private:
|
||||
static constexpr PhysicalMemoryAddress ADDRESS_MASK = UINT32_C(0x00FFFFFF);
|
||||
static constexpr PhysicalMemoryAddress BASE_ADDRESS_MASK = UINT32_C(0x00FFFFFF);
|
||||
static constexpr PhysicalMemoryAddress ADDRESS_MASK = UINT32_C(0x001FFFFC);
|
||||
static constexpr u32 TRANSFER_TICKS = 10;
|
||||
|
||||
enum class SyncMode : u32
|
||||
|
Reference in New Issue
Block a user