mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
91db482ad3
No functional change.
17 lines
272 B
C++
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);
|
|
}
|
|
|
|
}
|