13 lines
250 B
C
13 lines
250 B
C
|
#ifndef _LS2K1000_H__
|
||
|
#define _LS2K1000_H__
|
||
|
|
||
|
#include <mips.h>
|
||
|
|
||
|
#define UART0_BASE_ADDR 0xbfe00000
|
||
|
#define UART0_OFF 0x0
|
||
|
#define UART0_BASE CKSEG1ADDR(UART0_BASE_ADDR + UART0_OFF)
|
||
|
|
||
|
void rt_hw_timer_handler(void);
|
||
|
void rt_hw_uart_init(void);
|
||
|
|
||
|
#endif
|