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:
Flyinghead 2023-01-21 12:11:42 +01:00
parent b443467770
commit 9473c235f2
1 changed files with 4 additions and 2 deletions

View File

@ -1065,13 +1065,15 @@ union CCN_MMUCR_type
struct struct
{ {
u32 AT : 1; u32 AT : 1;
u32 res : 1; u32 : 1;
u32 TI : 1; u32 TI : 1;
u32 res_2 : 5; u32 : 5;
u32 SV : 1; u32 SV : 1;
u32 SQMD : 1; u32 SQMD : 1;
u32 URC : 6; u32 URC : 6;
u32 : 2;
u32 URB : 6; u32 URB : 6;
u32 : 2;
u32 LRUI : 6; u32 LRUI : 6;
}; };
u32 reg_data; u32 reg_data;