mirror of
https://github.com/extremscorner/not64.git
synced 2025-04-02 10:52:37 -04:00
18 lines
No EOL
385 B
C
18 lines
No EOL
385 B
C
/* Copyright 2013 tueidj All Rights Reserved
|
|
* This code may not be used in any project
|
|
* without explicit permission from the author.
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void* VM_Init(size_t VMSize, size_t MEMSize);
|
|
void VM_Deinit(void);
|
|
|
|
// clears entire VM range to zero, unlocks any locked pages
|
|
void VM_InvalidateAll(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |