mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-01 06:23:35 +01:00
21 lines
429 B
C
21 lines
429 B
C
//---
|
|
//
|
|
// gint core module: mmu
|
|
//
|
|
// A wise application should avoid tampering with the system's
|
|
// configuration of the MMU and the TLB. This module implicitly calls the
|
|
// system but does nothing by itself.
|
|
//
|
|
//---
|
|
|
|
#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
|