mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-03 14:26:43 +00:00
This commits inserts TODOs into all necessary places to make the kernel compile on riscv64!
17 lines
220 B
C++
17 lines
220 B
C++
/*
|
|
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Library/Assertions.h>
|
|
|
|
namespace Kernel {
|
|
|
|
void debug_output(char)
|
|
{
|
|
TODO_RISCV64();
|
|
}
|
|
|
|
}
|