From d0b879509438f89f9d76bb5016e5101413b4a34d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 9 Oct 2025 21:01:35 -0400 Subject: kern: cons: Add text mode cursor Add text mode cursor which is the inversion of the console background color. Signed-off-by: Ian Moffett --- src/sys/include/io/cons/cons.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/sys/include/io/cons') diff --git a/src/sys/include/io/cons/cons.h b/src/sys/include/io/cons/cons.h index 4ae99a0..6b5c4f1 100644 --- a/src/sys/include/io/cons/cons.h +++ b/src/sys/include/io/cons/cons.h @@ -39,6 +39,8 @@ struct cons_scr { struct bootvar_fb fbvars; size_t text_x; size_t text_y; + size_t cursor_x; + size_t cursor_y; size_t max_col; size_t max_row; uint32_t scr_bg; -- cgit v1.2.3