mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Gekko: Convert UReg_WPAR over to using Common::BitField
This commit is contained in:
@ -653,12 +653,10 @@ union UReg_MMCR1
|
||||
// Write Pipe Address Register
|
||||
union UReg_WPAR
|
||||
{
|
||||
struct
|
||||
{
|
||||
u32 BNE : 1;
|
||||
u32 : 4;
|
||||
u32 GB_ADDR : 27;
|
||||
};
|
||||
BitField<0, 1, u32> BNE;
|
||||
BitField<1, 4, u32> reserved;
|
||||
BitField<5, 27, u32> GB_ADDR;
|
||||
|
||||
u32 Hex = 0;
|
||||
|
||||
UReg_WPAR() = default;
|
||||
|
Reference in New Issue
Block a user