summaryrefslogtreecommitdiff
path: root/kern/console.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-06-18 20:44:58 +0200
committerRichard Braun <rbraun@sceen.net>2017-06-18 20:44:58 +0200
commit6fda4ae759f96519037e71ffd3c8b298d388ff0c (patch)
tree9c2c8e367b042dd69ede840215e155c7c47efdb1 /kern/console.h
parent106bb2e3f3e658fcb6af72414f73cc49b32f836d (diff)
kern/console: add support for scrolling
Diffstat (limited to 'kern/console.h')
-rw-r--r--kern/console.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/kern/console.h b/kern/console.h
index 7455a051..a5aa478d 100644
--- a/kern/console.h
+++ b/kern/console.h
@@ -26,6 +26,9 @@
#include <kern/spinlock.h>
#include <kern/thread.h>
+#define CONSOLE_SCROLL_UP 0x12 /* DC2 */
+#define CONSOLE_SCROLL_DOWN 0x14 /* DC4 */
+
struct console;
struct console_ops {