mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
ccf7533b45
This simply makes dbgln use the EFI Simple Text Output Protocol.
13 lines
188 B
C++
13 lines
188 B
C++
/*
|
|
* Copyright (c) 2024, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
void ucs2_dbgln(char16_t const* message);
|
|
|
|
}
|