Struct moa_m68k::assembler::M68kAssembler

source ·
pub struct M68kAssembler {
    pub cputype: M68kType,
    pub labels: HashMap<String, usize>,
    pub output: Vec<u16>,
    pub relocations: Vec<Relocation>,
    pub current_origin: usize,
}

Fields§

§cputype: M68kType§labels: HashMap<String, usize>§output: Vec<u16>§relocations: Vec<Relocation>§current_origin: usize

Implementations§

source§

impl M68kAssembler

source

pub fn new(cputype: M68kType) -> Self

source

pub fn assemble(&mut self, text: &str) -> Result<Vec<u8>, Error>

source

pub fn assemble_words(&mut self, text: &str) -> Result<Vec<u16>, Error>

source

pub fn assemble_in_place(&mut self, text: &str) -> Result<(), Error>

source

fn parse(&mut self, text: &str) -> Result<Vec<(usize, AssemblyLine)>, Error>

source

fn apply_relocations(&mut self) -> Result<(), Error>

source

fn convert(&mut self, lineno: usize, line: &AssemblyLine) -> Result<(), Error>

source

fn convert_instruction( &mut self, lineno: usize, mneumonic: &str, args: &[AssemblyOperand] ) -> Result<(), Error>

source

fn convert_sized_instruction( &mut self, lineno: usize, mneumonic: &str, args: &[AssemblyOperand] ) -> Result<(), Error>

source

fn convert_common_immediate_instruction( &mut self, lineno: usize, opcode: u16, args: &[AssemblyOperand], operation_size: Size, disallow: Disallow ) -> Result<(), Error>

source

fn convert_common_dreg_instruction( &mut self, lineno: usize, opcode: u16, args: &[AssemblyOperand], operation_size: Size, disallow: Disallow ) -> Result<(), Error>

source

fn convert_common_areg_instruction( &mut self, lineno: usize, opcode: u16, args: &[AssemblyOperand], operation_size: Size, disallow: Disallow ) -> Result<(), Error>

source

fn convert_common_single_operand_instruction( &mut self, lineno: usize, opcode: u16, args: &[AssemblyOperand], operation_size: Size, disallow: Disallow ) -> Result<(), Error>

source

fn check_convert_flags_instruction( &mut self, lineno: usize, opcode_ccr: u16, opcode_sr: u16, args: &[AssemblyOperand] ) -> Result<bool, Error>

source

fn convert_common_shift_instruction( &mut self, lineno: usize, mneumonic: &str, opcode: u16, args: &[AssemblyOperand], operation_size: Size ) -> Result<(), Error>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, S> IntoAddress<T> for S
where T: FromAddress<S>,

source§

fn into_address(self) -> T

Translate the given address into an address of type T
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.