diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-05 22:59:22 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-05 22:59:22 -0400 |
commit | d026c19b1622b38fa92f3d7fba2eca42f6575efa (patch) | |
tree | 793c36d4dfa7355c070838d998f355033bfc642d | |
parent | 074960155dca8a22a10576b5a9fad06e88a24207 (diff) |
kernel: cons: Add color attribute helpers
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/dev/cons/cons.c | 17 | ||||
-rw-r--r-- | sys/include/dev/cons/cons.h | 2 |
2 files changed, 19 insertions, 0 deletions
diff --git a/sys/dev/cons/cons.c b/sys/dev/cons/cons.c index 61254a7..0e22bb5 100644 --- a/sys/dev/cons/cons.c +++ b/sys/dev/cons/cons.c @@ -379,6 +379,23 @@ cons_init_bufs(struct cons_screen *scr) } /* + * Reset console color. + */ +void +cons_reset_color(struct cons_screen *scr) +{ + g_root_scr.fg = CONSOLE_FG; + g_root_scr.bg = CONSOLE_BG; +} + +void +cons_update_color(struct cons_screen *scr, uint32_t fg, uint32_t bg) +{ + scr->fg = fg; + scr->bg = bg; +} + +/* * Put a character on the screen. * * @scr: Screen. diff --git a/sys/include/dev/cons/cons.h b/sys/include/dev/cons/cons.h index b27be23..fb254cb 100644 --- a/sys/include/dev/cons/cons.h +++ b/sys/include/dev/cons/cons.h @@ -64,6 +64,8 @@ struct cons_screen { 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); int cons_putch(struct cons_screen *scr, char c); int cons_putstr(struct cons_screen *scr, const char *s, size_t len); |