sh4: Fix CCN_MMUCR register definition
Some reserved bits were missing, which was breaking the (slow) MMU since the write mask is correct.
This commit is contained in:
parent
b443467770
commit
9473c235f2
|
@ -1065,13 +1065,15 @@ union CCN_MMUCR_type
|
|||
struct
|
||||
{
|
||||
u32 AT : 1;
|
||||
u32 res : 1;
|
||||
u32 : 1;
|
||||
u32 TI : 1;
|
||||
u32 res_2 : 5;
|
||||
u32 : 5;
|
||||
u32 SV : 1;
|
||||
u32 SQMD : 1;
|
||||
u32 URC : 6;
|
||||
u32 : 2;
|
||||
u32 URB : 6;
|
||||
u32 : 2;
|
||||
u32 LRUI : 6;
|
||||
};
|
||||
u32 reg_data;
|
||||
|
|
Loading…
Reference in New Issue