ppu.debug.h 501 B

123456789101112131415161718192021222324
  1. /*
  2. * PPU debug utilities - The peTI-NESulator Project
  3. * ppu.debug.h
  4. *
  5. * Created by Manoel Trapier on 12/04/07.
  6. * Copyright 2003-2008 986 Corp. All rights reserved.
  7. *
  8. * $LastChangedDate$
  9. * $Author$
  10. * $HeadURL$
  11. * $Revision$
  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