20 lines
310 B
C
20 lines
310 B
C
#ifndef DEBUG_H_
|
|
#define DEBUG_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include "malloc.h"
|
|
|
|
typedef uint32_t u32;
|
|
typedef uint16_t u16;
|
|
typedef uint8_t u8;
|
|
|
|
void DEBUG(void);
|
|
void DEBUG_PRINTF(const char *fmt, ...);
|
|
void SDRAM_USED(void);
|
|
|
|
#endif
|