diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-09 15:58:56 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-09 15:58:56 -0400 |
commit | 8c24ed3189a9cf5a75809aa28f787d071615c0cd (patch) | |
tree | 01c8b73ecc4667d3c84ba3cd3dc2d98e3ecd1299 /sys/include | |
parent | 802b5be90d58aeb2344b100d81f88a053b6e0c24 (diff) |
kernel: cons: Add ANSI cursor pos reset sequence
- Add support for the "\033[H" ANSI escape sequence to
reset the cursor to the 'home' position
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/dev/cons/ansi.h | 1 | ||||
-rw-r--r-- | sys/include/dev/cons/cons.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/dev/cons/ansi.h b/sys/include/dev/cons/ansi.h index 98d7618..f166458 100644 --- a/sys/include/dev/cons/ansi.h +++ b/sys/include/dev/cons/ansi.h @@ -46,6 +46,7 @@ /* ANSI_FEED update codes */ #define ANSI_UPDATE_COLOR -1 +#define ANSI_UPDATE_CURSOR -2 /* * ANSI parser state machine. diff --git a/sys/include/dev/cons/cons.h b/sys/include/dev/cons/cons.h index 13153b2..9868493 100644 --- a/sys/include/dev/cons/cons.h +++ b/sys/include/dev/cons/cons.h @@ -68,6 +68,7 @@ void cons_init(void); void cons_expose(void); void cons_update_color(struct cons_screen *scr, uint32_t fg, uint32_t bg); void cons_reset_color(struct cons_screen *scr); +void cons_reset_cursor(struct cons_screen *scr); int cons_putch(struct cons_screen *scr, char c); int cons_putstr(struct cons_screen *scr, const char *s, size_t len); |