blob: 9baf44dd6301fadc8bd6dc70f4b00dcf67b62987 [file] [log] [blame]
//! Implementations for the TI-MSP430 family of MCUs.
use crate::arch::Arch;
use crate::arch::RegId;
pub mod reg;
/// Implements `Arch` for standard 16-bit TI-MSP430 MCUs.
///
/// Check out the [module level docs](../index.html#whats-with-regidimpl) for
/// more info about the `RegIdImpl` type parameter.
pub enum Msp430<RegIdImpl: RegId = reg::id::Msp430RegId> {
#[doc(hidden)]
_Marker(core::marker::PhantomData<RegIdImpl>),
}
impl<RegIdImpl: RegId> Arch for Msp430<RegIdImpl> {
type Usize = u32;
type Registers = reg::Msp430Regs;
type RegId = RegIdImpl;
fn target_description_xml() -> Option<&'static str> {
Some(r#"<target version="1.0"><architecture>msp430</architecture></target>"#)
}
}