diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2015-02-07 16:56:02 -0500 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2015-02-07 16:56:02 -0500 |
| commit | 2be70c3b7c3cb806614318858090c039bdfd4fc5 (patch) | |
| tree | 61faa241e572d3241718b868ef9b32c20312ffc9 /drivers/tty.c | |
| parent | c0df0ee6437aa2786b1a92bc6af1284958d104c7 (diff) | |
| download | kappa-2be70c3b7c3cb806614318858090c039bdfd4fc5.zip kappa-2be70c3b7c3cb806614318858090c039bdfd4fc5.tar.gz kappa-2be70c3b7c3cb806614318858090c039bdfd4fc5.tar.bz2 kappa-2be70c3b7c3cb806614318858090c039bdfd4fc5.tar.xz | |
fix RNG with zero seed, rename VGA->GFX
Diffstat (limited to 'drivers/tty.c')
| -rw-r--r-- | drivers/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty.c b/drivers/tty.c index 7bce7e7..ae15778 100644 --- a/drivers/tty.c +++ b/drivers/tty.c @@ -1,9 +1,9 @@ #include <stdint.h> #include <stdio.h> +#include "gfx.h" #include "io.h" #include "panic.h" #include "tty.h" -#include "vga.h" static int term_x, term_y; static uint8_t term_col; |