From ddb38a300678b4facdb0700d4394603a66ae1601 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Tue, 11 Jan 2022 11:21:52 +0500 Subject: [PATCH] Revert "Implement serial console for x86_64" This reverts commit a8f1d213c8d75ae5a8e23e48731b2d243563d6ca. --- src/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console.c b/src/console.c index 9b84842..cff793b 100644 --- a/src/console.c +++ b/src/console.c @@ -12,7 +12,7 @@ void kernaux_console_putc(const char c __attribute__((unused))) { -#if defined(ASM_I386) || defined(ASM_X86_64) +#ifdef ASM_I386 kernaux_asm_i386_outportb(0x3F8, c); #endif }