Files
c-cnn/debug.h
2024-11-10 11:17:17 +08:00

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