diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2015-02-01 16:50:55 -0500 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2015-02-01 16:50:55 -0500 |
| commit | 483754ab27f2a58011f723efa52163a83c63e56e (patch) | |
| tree | fa50d2afc84b0403db26d92f38226d75adb7f281 /drivers | |
| parent | 726684887d414fbefe28d0d210abea8e842ecd21 (diff) | |
| download | kappa-483754ab27f2a58011f723efa52163a83c63e56e.zip kappa-483754ab27f2a58011f723efa52163a83c63e56e.tar.gz kappa-483754ab27f2a58011f723efa52163a83c63e56e.tar.bz2 kappa-483754ab27f2a58011f723efa52163a83c63e56e.tar.xz | |
lots of stuff
Diffstat (limited to 'drivers')
| -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 e938abd..c2be189 100644 --- a/drivers/tty.c +++ b/drivers/tty.c @@ -11,7 +11,7 @@ static uint16_t *term_buf; void tty_init(void) { term_buf = (uint16_t*)0xB8000; - term_col = VGA_MAKE_COLOR(VGA_WHITE, VGA_BLACK); + tty_set_color(VGA_MAKE_COLOR(VGA_LIGHT_GRAY, VGA_BLACK)); tty_clear(); } |