pub mod MRS_T1_AS {
#[cfg(feature = "meta")]
pub const OPCODE_MASK: u32 = 0b11111111111011111111000011111111u32;
#[cfg(feature = "meta")]
pub const OPCODE: u32 = 0b11110011111011111000000000000000u32;
#[cfg(feature = "meta")]
pub const SHOULD_BE_MASK: u32 = 0b00000000000011110010000011011111u32;
#[cfg(feature = "meta")]
pub const NAME: &str = "MRS_T1_AS";
#[cfg(feature = "meta_field")]
#[allow(nonstandard_style)]
pub const FIELD_Rd_OFFSET: u32 = 8u32;
#[cfg(feature = "meta_field")]
#[allow(nonstandard_style)]
pub const FIELD_Rd_WIDTH: u32 = 4u32;
#[cfg(feature = "meta_field")]
#[allow(nonstandard_style)]
pub const FIELD_R_OFFSET: u32 = 20u32;
#[cfg(feature = "meta_field")]
#[allow(nonstandard_style)]
pub const FIELD_R_WIDTH: u32 = 1u32;
#[inline]
pub const fn MRS_T1_AS(
R: ::aarchmrs_types::BitValue<1>,
Rd: ::aarchmrs_types::BitValue<4>,
) -> ::aarchmrs_types::InstructionCode {
::aarchmrs_types::InstructionCode::from_u32(
0b11110011111u32 << 21u32
| R.into_inner() << 20u32
| 0b11111000u32 << 12u32
| Rd.into_inner() << 8u32
| 0b00000000u32 << 0u32,
)
}
}