// Copyright (c) 2025 shibedrill // SPDX-License-Identifier: GPL-3.0-or-later #![allow(clippy::missing_safety_doc)] use core::arch::asm; pub unsafe fn halt() { unsafe { asm!("hlt"); } }