diff options
Diffstat (limited to 'payloads/libpayload/drivers')
-rw-r--r-- | payloads/libpayload/drivers/video/video.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/payloads/libpayload/drivers/video/video.c b/payloads/libpayload/drivers/video/video.c index 8448b78e52..78f410be34 100644 --- a/payloads/libpayload/drivers/video/video.c +++ b/payloads/libpayload/drivers/video/video.c @@ -141,6 +141,26 @@ void video_console_putchar(unsigned int ch) video_console_fixup_cursor(); } +void video_console_get_cursor(unsigned int *x, unsigned int *y, unsigned int *en) +{ + *x=0; + *y=0; + *en=0; + + if (console->get_cursor) + console->get_cursor(x, y, en); + + *x = cursorx; + *y = cursory; +} + +void video_console_set_cursor(unsigned int x, unsigned int y) +{ + cursorx = x; + cursory = y; + video_console_fixup_cursor(); +} + int video_console_init(void) { int i; |