patina 21.1.1

Common types and functionality used in UEFI development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Arch Specific abstractions for Patina.
//!
//! ## License
//!
//! Copyright (c) Microsoft Corporation.
//!
//! SPDX-License-Identifier: Apache-2.0
//!

#[cfg(all(not(test), target_arch = "aarch64"))]
pub mod aarch64;

#[cfg(all(not(test), target_arch = "x86_64"))]
pub mod x64;