1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-12 06:42:07 +00:00
serenity/Kernel/Arch/riscv64/Delay.cpp
Sönke Holz 570480c7d5 Kernel/riscv64: Add missing include in Delay.cpp
This include was missed in 4409b33145.
RISC-V should build again now.
2024-02-14 10:32:45 -07:00

17 lines
244 B
C++

/*
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Assertions.h>
#include <Kernel/Arch/Delay.h>
namespace Kernel {
void microseconds_delay(u32)
{
TODO_RISCV64();
}
}