Gekko: Convert UReg_DMAU over to using Common::BitField
This commit is contained in:
parent
a126821d5e
commit
474e09c239
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue