Files
osdev/kernel/shell.h
T
Luke Street 295ec24a65 Serial I/O; simple VGA graphics output; multiboot info & memory map
Initial work on shell history using arrow keys
2018-09-27 01:06:55 -04:00

19 lines
241 B
C

#pragma once
#include <common.h>
void shell_init();
void shell_read();
void shell_handle_up();
void shell_handle_down();
void key_buffer_clear();
bool key_buffer_append(char c);
void key_buffer_backspace();
void key_buffer_return();