mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 19:19:44 +03:00
91db482ad3
No functional change.
18 lines
272 B
C++
18 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);
|
|
}
|
|
|
|
}
|