mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
295ec24a65
Initial work on shell history using arrow keys
13 lines
159 B
C
13 lines
159 B
C
#pragma once
|
|
|
|
#include <common.h>
|
|
|
|
void serial_init();
|
|
|
|
bool serial_received();
|
|
|
|
char serial_read();
|
|
|
|
bool serial_transmit_empty();
|
|
|
|
void serial_write(char a); |