From 5fbb0c30cf78d811b86a432aada43e37544e16da Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 5 Jun 2025 23:11:07 -0400 Subject: kernel: cons: Add initial ANSI escape seq impl Signed-off-by: Ian Moffett --- sys/include/dev/cons/cons.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/include/dev/cons/cons.h') diff --git a/sys/include/dev/cons/cons.h b/sys/include/dev/cons/cons.h index fb254cb..13153b2 100644 --- a/sys/include/dev/cons/cons.h +++ b/sys/include/dev/cons/cons.h @@ -34,6 +34,7 @@ #include #include #include +#include struct cons_char { char c; @@ -45,6 +46,7 @@ struct cons_char { struct cons_screen { struct fbdev fbdev; + struct ansi_state ansi_s; uint32_t fg; uint32_t bg; -- cgit v1.2.3