mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
15 lines
401 B
C
15 lines
401 B
C
/**
|
|
* Nintendo GameCube ARAM Wrapper for libOGC aram.c
|
|
*
|
|
* This is an often overlooked area of ~16Mb extra RAM
|
|
* It's use in Genesis Plus is to shadow the ROM.
|
|
* Actually, only SSF2TNC needs shadowing, but it's always
|
|
* Good to know :)
|
|
*/
|
|
|
|
extern void StartARAM ();
|
|
void ShadowROM ();
|
|
void ARAMFetch (char *src, char *dst, int len);
|
|
void ARAMPut (char *src, char *dst, int len);
|
|
|