summaryrefslogtreecommitdiff
path: root/Kernel/Arch/Delay.h
blob: 5b9f0be55139619db2929dcf8a39fe2f65220c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Types.h>

namespace Kernel {

void microseconds_delay(u32 microseconds);

}