mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-26 07:34:15 +01:00
15 lines
240 B
C
15 lines
240 B
C
|
#ifndef DEBUG_H__
|
||
|
#define DEBUG_H__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void debug_print_text (char *text);
|
||
|
void debug_print_8bit (uint8_t value);
|
||
|
void debug_print_16bit (uint16_t value);
|
||
|
void debug_print_32bit (uint32_t value);
|
||
|
|
||
|
|
||
|
#endif
|