//! Platform Initialization Specification Version
//!
//! This module contains definitions related to the version of the Platform Initialization (PI)
//! Specification that this implementation targets.
//!
//! ## License
//!
//! Copyright (c) Microsoft Corporation.
//!
//! SPDX-License-Identifier: Apache-2.0
//!
/// The major revision number of the PI Specification that this implementation targets.
pub const PI_SPECIFICATION_MAJOR_REVISION: u32 = 1;
/// The minor revision number of the PI Specification that this implementation targets.
pub const PI_SPECIFICATION_MINOR_REVISION: u32 = 80;