mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-03 23:43:36 +01:00
22 lines
411 B
C
22 lines
411 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 _MMU_H
|
||
|
#define _MMU_H 1
|
||
|
|
||
|
/*
|
||
|
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
|