/* * Copyright (c) 2022, Liav A. * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Kernel { void i8042_reboot() { dbgln("attempting reboot via KB Controller..."); IO::out8(0x64, 0xFE); } }