pub struct Msp430 {}
Expand description
Implements Arch
for standard 16-bit TI-MSP430 MCUs.
Trait Implementations§
Source§impl Arch for Msp430
impl Arch for Msp430
Source§type Registers = Msp430Regs<u16>
type Registers = Msp430Regs<u16>
The architecture’s register file. See
Registers
for more details.Source§type BreakpointKind = usize
type BreakpointKind = usize
The architecture’s breakpoint “kind”, used to determine the “size”
of breakpoint to set. See
BreakpointKind
for more details.Source§fn target_description_xml() -> Option<&'static str>
fn target_description_xml() -> Option<&'static str>
(optional) Return the arch’s description XML file (
target.xml
). Read moreSource§fn lldb_register_info(reg_id: usize) -> Option<RegisterInfo<'static>>
fn lldb_register_info(reg_id: usize) -> Option<RegisterInfo<'static>>
(optional) (LLDB extension) Return register info for the specified
register. Read more
Auto Trait Implementations§
impl Freeze for Msp430
impl RefUnwindSafe for Msp430
impl Send for Msp430
impl Sync for Msp430
impl Unpin for Msp430
impl UnwindSafe for Msp430
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more