diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2019-05-26 17:32:25 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2019-05-26 17:32:25 +0100 |
| commit | eb4de24523e8f0832daae89a083844c8e9a261e9 (patch) | |
| tree | 15e5295c8bc8feecb069db0339cd7a1b6c1a7c3c /kernel/kernel.c | |
| parent | 820fa143edde3bf1ca103869dfaff8ba35e8702b (diff) | |
| download | tinyOS-eb4de24523e8f0832daae89a083844c8e9a261e9.tar.xz tinyOS-eb4de24523e8f0832daae89a083844c8e9a261e9.zip | |
Explicitly enable hardware cursorkeyboard-support
Required for virtualbox
Diffstat (limited to 'kernel/kernel.c')
| -rw-r--r-- | kernel/kernel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c index a6540f5..7f702e7 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -5,10 +5,10 @@ void run_kern_demo() { - + scrn_enable_cursor(10, 12); scrn_clear(); scrn_set_text_colour(COLOUR_LIGHT_GREEN, COLOUR_BLACK); - + scrn_println(" _ _ ____ _____ "); scrn_println(" | | (_) / __ \\ / ____|"); scrn_println(" | |_ _ _ __ _ _| | | | (___ "); |