pub mod HLT_T1 {
#[cfg(feature = "meta")]
pub const OPCODE_MASK: u32 = 0b00000000000000001111111111000000u32;
#[cfg(feature = "meta")]
pub const OPCODE: u32 = 0b00000000000000001011101010000000u32;
#[cfg(feature = "meta")]
pub const SHOULD_BE_MASK: u32 = 0b00000000000000000000000000000000u32;
#[cfg(feature = "meta")]
pub const NAME: &str = "HLT_T1";
#[cfg(feature = "meta_field")]
#[allow(nonstandard_style)]
pub const FIELD_imm6_OFFSET: u32 = 0u32;
#[cfg(feature = "meta_field")]
#[allow(nonstandard_style)]
pub const FIELD_imm6_WIDTH: u32 = 6u32;
#[inline]
pub const fn HLT_T1(imm6: ::aarchmrs_types::BitValue<6>) -> ::aarchmrs_types::InstructionCode {
::aarchmrs_types::InstructionCode::from_u32(
0b1011101010u32 << 6u32 | imm6.into_inner() << 0u32,
)
}
}