[][src]Struct p8n_types::TestArch

pub struct TestArch;

ISA used for testing. Single digits are interpreted as 32 bit constants, lower case letters as 32 bit registers or 1 bit flags depending on the context. First argument is the result. Upper case letters are opcodes.

Instructions

'A' : := + 'X' : := * 'U' : := - 'M' : := 'C' : := <= ? 1 : 0 # is a 1 bit flag 'E' : := == ? 1 : 0 # is a 1 bit flag 'B' : branch to if flag is 1, fall-thru otherwise 'J' : jump to 'G' : call to 'F': call to random uuid 'H' : call to stub x 'R': return 'S' : *x := y 'L' : x := *y

Trait Implementations

impl Architecture for TestArch[src]

type Configuration = ()

This type can describes the CPU state. For x86 this would be the mode, for ARM whenever Thumb is active. Read more

impl Clone for TestArch[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TestArch[src]

Auto Trait Implementations

impl Send for TestArch

impl Sync for TestArch

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]