//--- // // gint core module: mmu // // A wise application should avoid tampering with the system's // configuration of the MMU and the TLB. This module implicitly forces the // system to load the required pages but does not interact with the TLB. // //--- #ifndef _INTERNALS_MMU_H #define _INTERNALS_MMU_H /* mmu_pseudoTLBInit() Tries to have the system load enough data into TLB to allow add-in to execute. */ void mmu_pseudoTLBInit(void); #endif // _MMU_H