/* * Copyright (c) 2023, Sönke Holz * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Kernel { void arch_specific_reboot() { TODO_RISCV64(); } void arch_specific_poweroff() { TODO_RISCV64(); } }