Nenhuma descrição

debug.h 472B

123456789101112131415161718192021
  1. #ifndef DEBUG_H
  2. #define DEBUG_H
  3. struct print_engine{
  4. u8 line;
  5. u8 row;
  6. u8 color;
  7. };
  8. static struct print_engine* print_memory = (struct print_engine*)(0x0203FFF0);
  9. void some_test();
  10. void reset_scrolling_debug();
  11. void init_unit_test();
  12. void debug_scene();
  13. u8 char_to_byte(char character);
  14. void print_character(u16 line, u16 row, char character, u8 color);
  15. void print_string(u16 line, u16 row, u8 color, char* pBuf);
  16. #endif /* DEBUG_H */