12 lines
187 B
C
12 lines
187 B
C
#ifndef ROM_H
|
|
#define ROM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint32_t DiagPrintf(const char *fmt, ...)
|
|
__attribute__((format(printf, 1, 2)));
|
|
|
|
#define printf DiagPrintf
|
|
|
|
#endif // ROM_H
|