//! # MSR (immediate)
//!
//! Move immediate value to Special register moves selected bits of an immediate value to the corresponding bits in the *APSR* , *CPSR* , or *SPSR* _<current_mode>.
#![allow(non_snake_case)]
#![allow(unused)]
use crate::error::Result;
use crate::utils::*;
use super::super::formatter::*;
use super::super::instruction::*;
use super::super::operand::*;
use super::super::consts::*;
use super::super::config::*;
use super::super::decoder::*;