mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 19:55:07 +00:00

kprintf should not really care about the hardware-specific details of each UART or serial port out there, so instead of using x86 specific instructions, let's ensure that we will compile only the relevant code for debug output for a targeted-specific platform.
13 lines
178 B
C++
13 lines
178 B
C++
/*
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
void bochs_debug_output(char ch);
|
|
|
|
}
|