ppu.debug.h 420 B

12345678910111213141516171819
  1. /*
  2. * PPU debug utilities - The peTI-NESulator Project
  3. * ppu.debug.h
  4. *
  5. * Created by Manoël Trapier on 12/04/07.
  6. * Copyright (c) 2002-2019 986-Studio.
  7. *
  8. */
  9. #ifdef __TINES_PPU_INTERNAL__
  10. void ppu_dumpPalette(int x, int y);
  11. void ppu_dumpPattern(int xd, int yd);
  12. void ppu_dumpNameTable(int xd, int yd);
  13. void ppu_dumpAttributeTable(int xd, int yd);
  14. #else
  15. #error Must only be included inside the PPU code
  16. #endif