From 0312020bd209a7a3919fa7d24cbb9438470fd23d Mon Sep 17 00:00:00 2001 From: mintsuki Date: Sun, 29 Aug 2021 16:16:32 +0200 Subject: [PATCH] term: Nul should be ignored --- stage23/lib/term.s2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stage23/lib/term.s2.c b/stage23/lib/term.s2.c index 58a82044..2a235191 100644 --- a/stage23/lib/term.s2.c +++ b/stage23/lib/term.s2.c @@ -853,6 +853,7 @@ void term_putchar(uint8_t c) { get_cursor_pos(&x, &y); switch (c) { + case 0x00: case 0x7f: return; case 0x9b: