/* * Copyright (c) 2022, Liav A. * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Kernel { void microseconds_delay(u32 microseconds) { IO::delay(microseconds); } }