mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +00:00

This commit adds all necessary includes, so all functions are properly declared. PCI.cpp is moved to PCI/Initializer.cpp, as that matches the header path.
17 lines
257 B
C++
17 lines
257 B
C++
/*
|
|
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Arch/DebugOutput.h>
|
|
#include <Kernel/Library/Assertions.h>
|
|
|
|
namespace Kernel {
|
|
|
|
void debug_output(char)
|
|
{
|
|
TODO_RISCV64();
|
|
}
|
|
|
|
}
|