metaforce/NESEmulator/ppu.c

9 lines
127 B
C
Raw Normal View History

2018-02-02 16:35:19 -08:00
#include "fixNES/ppu.c"
/* Non-invasive way to access VRAM buffer directly */
uint8_t* ppuGetVRAM()
{
return PPU_VRAM;
}