1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-29 16:15:11 +00:00
serenity/Kernel/Arch/x86_64/Delay.cpp
2022-12-28 11:53:41 +01:00

17 lines
272 B
C++

/*
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Arch/Delay.h>
#include <Kernel/Arch/x86_64/IO.h>
namespace Kernel {
void microseconds_delay(u32 microseconds)
{
IO::delay(microseconds);
}
}