// SPDX-License-Identifier: GPL-3.0-or-later // Copyright (c) 2026 0xKSor #pragma once #include enum { kUARTBaseAddress = 0x09000000, }; void SerialUpdate(UInt64 address); Int32 SerialPutCharacter(ASCII character); Int32 SerialPutString(const ASCII* string);