Gekko: Convert UReg_DMAU over to using Common::BitField

This commit is contained in:
Lioncash 2021-08-27 11:19:21 -04:00
parent a126821d5e
commit 474e09c239

View file

@ -666,11 +666,9 @@ union UReg_WPAR
// Direct Memory Access Upper register // Direct Memory Access Upper register
union UReg_DMAU union UReg_DMAU
{ {
struct BitField<0, 5, u32> DMA_LEN_U;
{ BitField<5, 27, u32> MEM_ADDR;
u32 DMA_LEN_U : 5;
u32 MEM_ADDR : 27;
};
u32 Hex = 0; u32 Hex = 0;
UReg_DMAU() = default; UReg_DMAU() = default;