ppu.debug.h 631 B

123456789101112131415161718192021222324
  1. /*
  2. * PPU debug utilities - The TI-NESulator Project
  3. * ppu.debug.h
  4. *
  5. * Created by Manoël Trapier on 12/04/07.
  6. * Copyright 2003-2007 986 Corp. All rights reserved.
  7. *
  8. * $LastChangedDate: 2007-05-24 15:11:55 +0200 (jeu, 24 mai 2007) $
  9. * $Author: mtrapier $
  10. * $HeadURL: file:///media/HD6G/SVNROOT/trunk/TI-NESulator/src/ppu/ppu.debug.h $
  11. * $Revision: 53 $
  12. *
  13. */
  14. #ifdef __TINES_PPU_INTERNAL__
  15. void ppu_dumpPalette(int x, int y);
  16. void ppu_dumpPattern(int xd, int yd);
  17. void ppu_dumpNameTable(int xd, int yd);
  18. void ppu_dumpAttributeTable(int xd, int yd);
  19. #else
  20. #error Must only be included inside the PPU code
  21. #endif