mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-24 00:46:17 +04:00
13 lines
211 B
C
13 lines
211 B
C
#ifndef _RISCV_16550_H
|
|
#define _RISCV_16550_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern volatile uint8_t* uart16550;
|
|
|
|
void uart16550_putchar(uint8_t ch);
|
|
int uart16550_getchar();
|
|
void query_uart16550(uintptr_t dtb);
|
|
|
|
#endif
|