mirror of https://github.com/AxioDL/metaforce.git
9 lines
127 B
C
9 lines
127 B
C
|
#include "fixNES/ppu.c"
|
||
|
|
||
|
/* Non-invasive way to access VRAM buffer directly */
|
||
|
|
||
|
uint8_t* ppuGetVRAM()
|
||
|
{
|
||
|
return PPU_VRAM;
|
||
|
}
|