mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 13:11:22 +00:00
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;
|
|
}
|