minimal_rt/arch/x86_64/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#![cfg(target_arch = "x86_64")]

//! x86_64 architecture-specific implementations.

pub mod enlightened_panic;
pub mod hypercall;
pub mod intrinsics;
pub mod msr;
pub mod reftime;
pub mod serial;