stkarm/include/dbg.h

16 lines
346 B
C++

#ifndef DBG_H
#define DBG_H
extern "C" int printk(const char* msg);
extern "C" int printkl(const char* msg);
namespace dbg {
char* const UART_RBR = (char* const)0x01c28000;
char* const UART_THR = (char* const)0x01c28000;
char* const UART_IER = (char* const)0x01c28004;
char* const UART_LSR = (char* const)0x01c28014;
}
#endif