Lines Matching refs:wram

108 void MIi_SetWramBank( MIWramPos wram, int num, MIWramProc proc, MIWramOffset offset, MIWramEnable e…  in MIi_SetWramBank()  argument
115 SDK_ASSERT( 0<=wram && wram<3 ); in MIi_SetWramBank()
116 (f[wram])( num, proc, offset, enable ); in MIi_SetWramBank()
146 static vu8 MIi_GetWramBank( MIWramPos wram, int num ) in MIi_GetWramBank() argument
153 SDK_ASSERT( 0<=wram && wram<3 ); in MIi_GetWramBank()
154 return (f[wram])( num ); in MIi_GetWramBank()
196 void MIi_SetWramBankMaster( MIWramPos wram, int num, MIWramProc proc ) in MIi_SetWramBankMaster() argument
202 SDK_ASSERT( 0<=wram && wram<3 ); in MIi_SetWramBankMaster()
203 (f[wram])( num, proc ); in MIi_SetWramBankMaster()
244 void MIi_SetWramBankEnable( MIWramPos wram, int num, MIWramEnable enable ) in MIi_SetWramBankEnable() argument
251 SDK_ASSERT( 0<=wram && wram<3 ); in MIi_SetWramBankEnable()
252 (f[wram])( num, enable ); in MIi_SetWramBankEnable()
284 MIWramProc MI_GetWramBankMaster( MIWramPos wram, int num ) in MI_GetWramBankMaster() argument
291 SDK_ASSERT( 0<=wram && wram<3 ); in MI_GetWramBankMaster()
292 return (f[wram])( num ); in MI_GetWramBankMaster()
336 MIWramOffset MI_GetWramBankOffset( MIWramPos wram, int num ) in MI_GetWramBankOffset() argument
343 SDK_ASSERT( 0<=wram && wram<3 ); in MI_GetWramBankOffset()
344 return (f[wram])( num ); in MI_GetWramBankOffset()
375 MIWramEnable MI_GetWramBankEnable( MIWramPos wram, int num ) in MI_GetWramBankEnable() argument
382 SDK_ASSERT( 0<=wram && wram<3 ); in MI_GetWramBankEnable()
383 return (f[wram])( num ); in MI_GetWramBankEnable()
515 u32 MI_GetWramMapStart( MIWramPos wram ) in MI_GetWramMapStart() argument
521 SDK_ASSERT( 0<=wram && wram<3 ); in MI_GetWramMapStart()
522 return (f[wram])(); in MI_GetWramMapStart()
565 u32 MI_GetWramMapEnd( MIWramPos wram ) in MI_GetWramMapEnd() argument
571 SDK_ASSERT( 0<=wram && wram<3 ); in MI_GetWramMapEnd()
572 return (f[wram])(); in MI_GetWramMapEnd()
619 MIWramImage MI_GetWramMapImage( MIWramPos wram ) in MI_GetWramMapImage() argument
625 SDK_ASSERT( 0<=wram && wram<3 ); in MI_GetWramMapImage()
626 return (f[wram])(); in MI_GetWramMapImage()
658 BOOL MI_IsWramSlotLocked( MIWramPos wram, int num ) in MI_IsWramSlotLocked() argument
664 SDK_ASSERT( 0<=wram && wram<3 ); in MI_IsWramSlotLocked()
665 return (f[wram])( num ); in MI_IsWramSlotLocked()
703 static u32 MIi_MakeData( u32 command, MIWramPos wram, MIWramProc proc, u32 data );
704 static void MIi_TakeApartData( u32 pxiData, u32* command, MIWramPos* wram, MIWramProc* proc, u32* d…
710 static u32 MIi_DoAllocWram( MIWramPos wram, MIWramSize size, MIWramProc proc );
711 static u32 MIi_DoAllocWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc );
712 static int MIi_DoFreeWram( MIWramPos wram, MIWramProc proc );
713 static int MIi_DoFreeWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc );
714 static int MIi_DoSwitchWram( MIWramPos wram, MIWramProc proc, MIWramProc newProc );
715 static int MIi_DoSwitchWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc, MIWram…
716 static u32 MIi_DoReserveWram( MIWramPos wram, MIWramSize size, MIWramProc proc );
717 static u32 MIi_DoReserveWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc );
718 static int MIi_DoCancelWram( MIWramPos wram, MIWramProc proc );
719 static int MIi_DoCancelWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc );
720 static int MIi_DoLockWramSlots( MIWramPos wram, u32 slots );
721 static int MIi_DoUnlockWramSlots( MIWramPos wram, u32 slots );
722 static int MIi_DoGetAllocatableWramSlot( MIWramPos wram, MIWramProc proc );
734 u16 wram[3][MI_WRAM_B_MAX_NUM]; member
744 static inline int MIi_GetReservation( MIWramPos wram, int num ) in MIi_GetReservation() argument
746 return (MIi_Info.wram[wram][num] & MI_MAN_WRAM_RESERVE_MASK)>>MI_MAN_WRAM_RESERVE_SHIFT; in MIi_GetReservation()
752 static inline void MIi_SetReservation( MIWramPos wram, int num, int val) in MIi_SetReservation() argument
754 MIi_Info.wram[wram][num] = (u16)(MIi_Info.wram[wram][num] in MIi_SetReservation()
762 static inline int MIi_GetMaster( MIWramPos wram, int num ) in MIi_GetMaster() argument
764 return (MIi_Info.wram[wram][num] & MI_MAN_WRAM_MASTER_MASK)>>MI_MAN_WRAM_MASTER_SHIFT; in MIi_GetMaster()
770 static inline void MIi_SetMaster( MIWramPos wram, int num, int val) in MIi_SetMaster() argument
772 MIi_Info.wram[wram][num] = (u16)(MIi_Info.wram[wram][num] in MIi_SetMaster()
794 static inline u32 MIi_GetAddress( MIWramPos wram, int num ) in MIi_GetAddress() argument
796 if (wram == MI_WRAM_A) in MIi_GetAddress()
800 if (wram == MI_WRAM_B) in MIi_GetAddress()
804 if (wram == MI_WRAM_C) in MIi_GetAddress()
930 MIWramPos wram; in MIi_CallbackForPxi() local
934 MIi_TakeApartData( data, &command, &wram, &proc, &param ); in MIi_CallbackForPxi()
943 retval = MIi_DoAllocWram( wram, (MIWramSize)size, proc ); in MIi_CallbackForPxi()
950 retval = MIi_DoAllocWramSlot( wram, slot, size, proc ); in MIi_CallbackForPxi()
955 retval = (u32)MIi_DoFreeWram( wram, proc ); in MIi_CallbackForPxi()
962 retval = (u32)MIi_DoFreeWramSlot( wram, slot, size, proc ); in MIi_CallbackForPxi()
968 retval = (u32)MIi_DoSwitchWram( wram, proc, newProc ); in MIi_CallbackForPxi()
976 retval = (u32)MIi_DoSwitchWramSlot( wram, slot, size, proc, newProc ); in MIi_CallbackForPxi()
982 retval = MIi_DoReserveWram( wram, (MIWramSize)size, proc ); in MIi_CallbackForPxi()
989 retval = MIi_DoReserveWramSlot( wram, slot, size, proc ); in MIi_CallbackForPxi()
994 retval = (u32)MIi_DoCancelWram( wram, proc ); in MIi_CallbackForPxi()
1001 retval = (u32)MIi_DoCancelWramSlot( wram, slot, size, proc ); in MIi_CallbackForPxi()
1006 retval = (u32)MIi_GetReservation( wram, (int)param ); in MIi_CallbackForPxi()
1011 retval = (u8)MIi_DoGetAllocatableWramSlot( wram, proc ); in MIi_CallbackForPxi()
1020 retval = (u32)MIi_DoLockWramSlots( wram, param ); in MIi_CallbackForPxi()
1025 retval = (u32)MIi_DoUnlockWramSlots( wram, param ); in MIi_CallbackForPxi()
1083 u32 MI_AllocWram( MIWramPos wram, MIWramSize size, MIWramProc proc ) in MI_AllocWram() argument
1089 result = MIi_DoAllocWram( wram, size, proc ); in MI_AllocWram()
1096 static u32 MIi_DoAllocWram( MIWramPos wram, MIWramSize size, MIWramProc proc ) in MIi_DoAllocWram() argument
1099 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoAllocWram()
1103 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoAllocWram()
1107 int master = MIi_GetMaster( wram, n ); in MIi_DoAllocWram()
1108 int reserve = MIi_GetReservation( wram, n ); in MIi_DoAllocWram()
1136 MIi_SetMaster(wram, firstBlock+n, proc); in MIi_DoAllocWram()
1137 MIi_SetWramBankMaster( wram, firstBlock+n, proc); in MIi_DoAllocWram()
1138 MIi_SetWramBankEnable( wram, firstBlock+n, MI_WRAM_ENABLE ); in MIi_DoAllocWram()
1141 return MIi_GetAddress(wram, firstBlock); in MIi_DoAllocWram()
1153 u32 data = MIi_MakeData( MIi_PXI_COMMAND_ALLOC, wram, proc, (u32)(size<<8) ); in MIi_DoAllocWram()
1183 u32 MI_AllocWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MI_AllocWramSlot() argument
1189 result = MIi_DoAllocWramSlot( wram, slot, size, proc ); in MI_AllocWramSlot()
1196 static u32 MIi_DoAllocWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MIi_DoAllocWramSlot() argument
1199 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoAllocWramSlot()
1201 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoAllocWramSlot()
1207 int reserve = MIi_GetReservation( wram, n ); in MIi_DoAllocWramSlot()
1208 int master = MIi_GetMaster( wram, n ); in MIi_DoAllocWramSlot()
1222 MIi_SetMaster(wram, n, proc); in MIi_DoAllocWramSlot()
1223 MIi_SetWramBankMaster( wram, n, proc); in MIi_DoAllocWramSlot()
1224 MIi_SetWramBankEnable( wram, n, MI_WRAM_ENABLE ); in MIi_DoAllocWramSlot()
1227 return MIi_GetAddress(wram, slot); in MIi_DoAllocWramSlot()
1239 u32 data = MIi_MakeData( MIi_PXI_COMMAND_ALLOC_SLOT, wram, proc, (u32)(slot<<8)|size ); in MIi_DoAllocWramSlot()
1265 int MI_FreeWram( MIWramPos wram, MIWramProc proc ) in MI_FreeWram() argument
1271 result = MIi_DoFreeWram( wram, proc ); in MI_FreeWram()
1278 static int MIi_DoFreeWram( MIWramPos wram, MIWramProc proc ) in MIi_DoFreeWram() argument
1283 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoFreeWram()
1287 int master = MIi_GetMaster( wram, n ); in MIi_DoFreeWram()
1290 MIi_SetMaster(wram, n, MI_WRAM_FREE); in MIi_DoFreeWram()
1291 MIi_SetWramBankMaster(wram, n, MI_WRAM_ARM7/*dummy*/ ); in MIi_DoFreeWram()
1292 MIi_SetWramBankEnable(wram, n, MI_WRAM_DISABLE ); in MIi_DoFreeWram()
1309 u32 data = MIi_MakeData( MIi_PXI_COMMAND_FREE, wram, proc, 0 ); in MIi_DoFreeWram()
1358 int MI_FreeWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MI_FreeWramSlot() argument
1364 result = MIi_DoFreeWramSlot( wram, slot, size, proc ); in MI_FreeWramSlot()
1371 static int MIi_DoFreeWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MIi_DoFreeWramSlot() argument
1374 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoFreeWramSlot()
1380 int master = MIi_GetMaster( wram, n ); in MIi_DoFreeWramSlot()
1383 MIi_SetMaster(wram, n, MI_WRAM_FREE); in MIi_DoFreeWramSlot()
1384 MIi_SetWramBankMaster(wram, n, MI_WRAM_ARM7/*dummy*/ ); in MIi_DoFreeWramSlot()
1385 MIi_SetWramBankEnable(wram, n, MI_WRAM_DISABLE ); in MIi_DoFreeWramSlot()
1402 u32 data = MIi_MakeData( MIi_PXI_COMMAND_FREE_SLOT, wram, proc, (u32)(slot<<8)|size ); in MIi_DoFreeWramSlot()
1433 int MI_SwitchWram( MIWramPos wram, MIWramProc proc, MIWramProc newProc ) in MI_SwitchWram() argument
1439 result = MIi_DoSwitchWram( wram, proc, newProc ); in MI_SwitchWram()
1446 static int MIi_DoSwitchWram( MIWramPos wram, MIWramProc proc, MIWramProc newProc ) in MIi_DoSwitchWram() argument
1451 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoSwitchWram()
1455 int master = MIi_GetMaster( wram, n ); in MIi_DoSwitchWram()
1458 MIi_SetMaster(wram, n, newProc); in MIi_DoSwitchWram()
1459 MIi_SetWramBankMaster(wram, n, newProc ); in MIi_DoSwitchWram()
1460 MIi_SetWramBankEnable(wram, n, MI_WRAM_ENABLE ); in MIi_DoSwitchWram()
1476 u32 data = MIi_MakeData( MIi_PXI_COMMAND_SWITCH, wram, proc, (u32)(newProc<<12) ); in MIi_DoSwitchWram()
1531 int MI_SwitchWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc, MIWramProc newPr… in MI_SwitchWramSlot() argument
1537 result = MIi_DoSwitchWramSlot( wram, slot, size, proc, newProc ); in MI_SwitchWramSlot()
1544 static int MIi_DoSwitchWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc, MIWram… in MIi_DoSwitchWramSlot() argument
1547 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoSwitchWramSlot()
1553 int master = MIi_GetMaster( wram, n ); in MIi_DoSwitchWramSlot()
1556 MIi_SetMaster(wram, n, newProc); in MIi_DoSwitchWramSlot()
1557 MIi_SetWramBankMaster(wram, n, newProc ); in MIi_DoSwitchWramSlot()
1558 MIi_SetWramBankEnable(wram, n, MI_WRAM_ENABLE ); in MIi_DoSwitchWramSlot()
1574 …u32 data = MIi_MakeData( MIi_PXI_COMMAND_SWITCH_SLOT, wram, proc, (u32)((newProc<<12)|(slot<<8)|(s… in MIi_DoSwitchWramSlot()
1609 u32 MI_ReserveWram( MIWramPos wram, MIWramSize size, MIWramProc proc ) in MI_ReserveWram() argument
1615 result = MIi_DoReserveWram( wram, size, proc ); in MI_ReserveWram()
1622 static u32 MIi_DoReserveWram( MIWramPos wram, MIWramSize size, MIWramProc proc ) in MIi_DoReserveWram() argument
1625 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoReserveWram()
1629 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoReserveWram()
1633 int master = MIi_GetMaster( wram, n ); in MIi_DoReserveWram()
1634 int reserve = MIi_GetReservation( wram, n ); in MIi_DoReserveWram()
1661 MIi_SetReservation(wram, firstBlock+n, proc); in MIi_DoReserveWram()
1664 return MIi_GetAddress(wram, firstBlock); in MIi_DoReserveWram()
1676 u32 data = MIi_MakeData( MIi_PXI_COMMAND_RESERVE, wram, proc, size ); in MIi_DoReserveWram()
1713 u32 MI_ReserveWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MI_ReserveWramSlot() argument
1719 result = MIi_DoReserveWramSlot( wram, slot, size, proc ); in MI_ReserveWramSlot()
1726 static u32 MIi_DoReserveWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MIi_DoReserveWramSlot() argument
1729 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoReserveWramSlot()
1731 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoReserveWramSlot()
1737 int master = MIi_GetMaster( wram, slot ); in MIi_DoReserveWramSlot()
1738 int reserve = MIi_GetReservation( wram, slot ); in MIi_DoReserveWramSlot()
1752 MIi_SetReservation(wram, n, proc); in MIi_DoReserveWramSlot()
1755 return MIi_GetAddress(wram, slot); in MIi_DoReserveWramSlot()
1767 u32 data = MIi_MakeData( MIi_PXI_COMMAND_RESERVE_SLOT, wram, proc, (u32)(slot<<8)|size ); in MIi_DoReserveWramSlot()
1792 int MI_CancelWram( MIWramPos wram, MIWramProc proc ) in MI_CancelWram() argument
1798 result = MIi_DoCancelWram( wram, proc ); in MI_CancelWram()
1805 static int MIi_DoCancelWram( MIWramPos wram, MIWramProc proc ) in MIi_DoCancelWram() argument
1809 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoCancelWram()
1814 if (MIi_GetReservation(wram,n) == proc) in MIi_DoCancelWram()
1816 MIi_SetReservation(wram, n, MI_WRAM_FREE); in MIi_DoCancelWram()
1832 u32 data = MIi_MakeData( MIi_PXI_COMMAND_CANCEL, wram, proc, 0 ); in MIi_DoCancelWram()
1882 int MI_CancelWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MI_CancelWramSlot() argument
1888 result = MIi_DoCancelWramSlot( wram, slot, size, proc ); in MI_CancelWramSlot()
1895 static int MIi_DoCancelWramSlot( MIWramPos wram, int slot, MIWramSize size, MIWramProc proc ) in MIi_DoCancelWramSlot() argument
1898 int blocks = (int)( (wram == MI_WRAM_A)? (size/2): size ); in MIi_DoCancelWramSlot()
1901 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoCancelWramSlot()
1905 if (MIi_GetReservation(wram,n) == proc) in MIi_DoCancelWramSlot()
1907 MIi_SetReservation(wram, n, MI_WRAM_FREE); in MIi_DoCancelWramSlot()
1923 u32 data = MIi_MakeData( MIi_PXI_COMMAND_CANCEL_SLOT, wram, proc, (u32)(slot<<8)|size ); in MIi_DoCancelWramSlot()
1945 int MI_LockWramSlots( MIWramPos wram, u32 slots ) in MI_LockWramSlots() argument
1951 result = MIi_DoLockWramSlots( wram, slots ); in MI_LockWramSlots()
1958 static int MIi_DoLockWramSlots( MIWramPos wram, u32 slots ) in MIi_DoLockWramSlots() argument
1970 u32 data = MIi_MakeData( MIi_PXI_COMMAND_LOCKWRAM, wram, (MIWramProc)0, slots ); in MIi_DoLockWramSlots()
1977 switch( wram ) in MIi_DoLockWramSlots()
2008 int MI_UnlockWramSlots( MIWramPos wram, u32 slots ) in MI_UnlockWramSlots() argument
2014 result = MIi_DoUnlockWramSlots( wram, slots ); in MI_UnlockWramSlots()
2021 static int MIi_DoUnlockWramSlots( MIWramPos wram, u32 slots ) in MIi_DoUnlockWramSlots() argument
2033 u32 data = MIi_MakeData( MIi_PXI_COMMAND_UNLOCKWRAM, wram, (MIWramProc)0, slots ); in MIi_DoUnlockWramSlots()
2040 switch( wram ) in MIi_DoUnlockWramSlots()
2074 MIWramProc MI_GetWramReservation( MIWramPos wram, int slot ) in MI_GetWramReservation() argument
2077 return (MIWramProc)MIi_GetReservation( wram, slot ); in MI_GetWramReservation()
2090 u32 data = MIi_MakeData( MIi_PXI_COMMAND_GET_RESERVE, wram, (MIWramProc)0, (u32)slot ); in MI_GetWramReservation()
2120 u8 MI_GetAllocatableWramSlot( MIWramPos wram, MIWramProc proc ) in MI_GetAllocatableWramSlot() argument
2126 result = (u8)MIi_DoGetAllocatableWramSlot( wram, proc ); in MI_GetAllocatableWramSlot()
2133 static int MIi_DoGetAllocatableWramSlot( MIWramPos wram, MIWramProc proc ) in MIi_DoGetAllocatableWramSlot() argument
2138 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MIi_DoGetAllocatableWramSlot()
2142 int master = MIi_GetMaster( wram, n ); in MIi_DoGetAllocatableWramSlot()
2143 int reserve = MIi_GetReservation( wram, n ); in MIi_DoGetAllocatableWramSlot()
2162 u32 data = MIi_MakeData( MIi_PXI_COMMAND_GET_ALLOCATABLE, wram, proc, 0 ); in MIi_DoGetAllocatableWramSlot()
2188 u8 MI_GetUsedWramSlot( MIWramPos wram ) in MI_GetUsedWramSlot() argument
2194 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MI_GetUsedWramSlot()
2198 if ( MIi_GetMaster( wram, n ) != MI_WRAM_FREE ) in MI_GetUsedWramSlot()
2223 BOOL MI_IsWramSlotUsed( MIWramPos wram, int slot ) in MI_IsWramSlotUsed() argument
2225 return (MIi_GetMaster(wram, slot) == MI_WRAM_FREE)? FALSE: TRUE; in MI_IsWramSlotUsed()
2317 static u32 MIi_MakeData( u32 command, MIWramPos wram, MIWramProc proc, u32 data ) in MIi_MakeData() argument
2319 return (command<<20) | (wram<<18) | (proc<<16) | data; in MIi_MakeData()
2335 static void MIi_TakeApartData( u32 pxiData, u32* command, MIWramPos* wram, MIWramProc* proc, u32* d… in MIi_TakeApartData() argument
2341 if ( wram ) in MIi_TakeApartData()
2343 *wram = (MIWramPos)( (pxiData>>18) & 3 ); in MIi_TakeApartData()
2461 void MI_DumpWramList(MIWramPos wram) in MI_DumpWramList() argument
2464 #pragma unused( wram ) in MI_DumpWramList()
2467 int maxNum = (wram == MI_WRAM_A)? MI_WRAM_A_MAX_NUM: MI_WRAM_B_MAX_NUM; in MI_DumpWramList()
2471 'A'+(int)wram, in MI_DumpWramList()
2472 MI_GetWramMapStart(wram), MI_GetWramMapEnd(wram) ); in MI_DumpWramList()
2484 if ( MI_GetWramBankEnable( wram, n ) ) in MI_DumpWramList()
2486 OS_Printf("%s ", getMasterStr( MI_GetWramBankMaster( wram, n ) ) ); in MI_DumpWramList()
2494 OS_Printf("%s\n", getMasterStr( MI_GetWramReservation( wram, n ) ) ); in MI_DumpWramList()