Major restructure
This commit is contained in:
parent
0562c2fe5a
commit
c52e19de83
25 changed files with 574 additions and 188 deletions
10
kern/libkern/uart.h
Normal file
10
kern/libkern/uart.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef UART_KERNEL_H
|
||||
#define UART_KERNEL_H
|
||||
|
||||
/** Send a single character to the UART device */
|
||||
void uart_putc(char c);
|
||||
|
||||
/** Send a **NULL TERMINATED** string to the UART device */
|
||||
void uart_puts(const char *s);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue