mirror of
https://github.com/RGBCube/serenity
synced 2025-06-12 06:42:07 +00:00
17 lines
244 B
C++
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();
|
|
}
|
|
|
|
}
|