ti-nesulator/src/include/ppu/ppu.debug.h
Godzil cdda587579 [Cosmetics]
- Update some headers that was incorrect
- Reformat the code in all files to match the same code style
- Removal of unwanted/unneeded files
2018-02-02 17:43:15 +00:00

20 lines
435 B
C

/*
* PPU debug utilities - The peTI-NESulator Project
* ppu.debug.h
*
* Created by Manoël Trapier on 12/04/07.
* Copyright 2003-2008 986 Corp. All rights reserved.
*
*/
#ifdef __TINES_PPU_INTERNAL__
void ppu_dumpPalette(int x, int y);
void ppu_dumpPattern(int xd, int yd);
void ppu_dumpNameTable(int xd, int yd);
void ppu_dumpAttributeTable(int xd, int yd);
#else
#error Must only be included inside the PPU code
#endif