From 5e8cf84fb8fb2821eb948ffd2fddafd18b18e8cc Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 15 Sep 2025 03:25:51 -0400 Subject: kern: cons: Finish string writing logic - Wrap on X overflow - Wrap on Y overflow - Keep track of max console width and height - Add console enable/disable control Signed-off-by: Ian Moffett --- src/sys/include/io/cons/cons.h | 1 + 1 file changed, 1 insertion(+) (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 7b0543e..4ae99a0 100644 --- a/src/sys/include/io/cons/cons.h +++ b/src/sys/include/io/cons/cons.h @@ -40,6 +40,7 @@ struct cons_scr { size_t text_x; size_t text_y; size_t max_col; + size_t max_row; uint32_t scr_bg; uint32_t scr_fg; }; -- cgit v1.2.3