:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_platform_hal_hal.hpp: Program Listing for File hal.hpp ================================ |exhale_lsh| :ref:`Return to documentation for file ` (``platform/hal/hal.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Gaia::Dev { class AcpiPc; } namespace Gaia::Hal { struct CpuData; void debug_output(char c); [[noreturn]] void halt(); Time get_time_since_boot(); void init_devices(Dev::AcpiPc *pc); uintptr_t phys_to_virt(uintptr_t phys); uintptr_t virt_to_phys(uintptr_t virt); void disable_interrupts(); void enable_interrupts(); struct CpuContext; } // namespace Gaia::Hal