1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00

Revert "Implement serial console for x86_64"

This reverts commit a8f1d213c8.
This commit is contained in:
Alex Kotov 2022-01-11 11:21:52 +05:00
parent a8f1d213c8
commit ddb38a3006
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -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
}