diff options
-rw-r--r-- | console.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,6 @@ #include "mmu.h" #include "proc.h" #include "x86.h" -#include "kbd.h" #define CRTPORT 0x3d4 #define LPTPORT 0x378 @@ -186,6 +185,8 @@ struct { int e; // Edit index } input; +#define C(x) ((x)-'@') // Control-x + void console_intr(int (*getc)(void)) { |