Enum moa_z80::Instruction
source · pub enum Instruction {
Show 85 variants
ADCa(Target),
ADC16(RegisterPair, RegisterPair),
ADDa(Target),
ADD16(RegisterPair, RegisterPair),
AND(Target),
BIT(u8, Target),
CALL(u16),
CALLcc(Condition, u16),
CCF,
CP(Target),
CPD,
CPDR,
CPI,
CPIR,
CPL,
DAA,
DEC16(RegisterPair),
DEC8(Target),
DI,
DJNZ(i8),
EI,
EXX,
EXafaf,
EXhlde,
EXsp(RegisterPair),
HALT,
IM(InterruptMode),
INC16(RegisterPair),
INC8(Target),
IND,
INDR,
INI,
INIR,
INic(Register),
INicz,
INx(u8),
JP(u16),
JPIndirect(RegisterPair),
JPcc(Condition, u16),
JR(i8),
JRcc(Condition, i8),
LD(LoadTarget, LoadTarget),
LDsr(SpecialRegister, Direction),
LDD,
LDDR,
LDI,
LDIR,
NEG,
NOP,
OR(Target),
OTDR,
OTIR,
OUTD,
OUTI,
OUTic(Register),
OUTicz,
OUTx(u8),
POP(RegisterPair),
PUSH(RegisterPair),
RES(u8, Target, UndocumentedCopy),
RET,
RETI,
RETN,
RETcc(Condition),
RL(Target, UndocumentedCopy),
RLA,
RLC(Target, UndocumentedCopy),
RLCA,
RLD,
RR(Target, UndocumentedCopy),
RRA,
RRC(Target, UndocumentedCopy),
RRCA,
RRD,
RST(u8),
SBCa(Target),
SBC16(RegisterPair, RegisterPair),
SCF,
SET(u8, Target, UndocumentedCopy),
SLA(Target, UndocumentedCopy),
SLL(Target, UndocumentedCopy),
SRA(Target, UndocumentedCopy),
SRL(Target, UndocumentedCopy),
SUB(Target),
XOR(Target),
}
Variants§
ADCa(Target)
ADC16(RegisterPair, RegisterPair)
ADDa(Target)
ADD16(RegisterPair, RegisterPair)
AND(Target)
BIT(u8, Target)
CALL(u16)
CALLcc(Condition, u16)
CCF
CP(Target)
CPD
CPDR
CPI
CPIR
CPL
DAA
DEC16(RegisterPair)
DEC8(Target)
DI
DJNZ(i8)
EI
EXX
EXafaf
EXhlde
EXsp(RegisterPair)
HALT
IM(InterruptMode)
INC16(RegisterPair)
INC8(Target)
IND
INDR
INI
INIR
INic(Register)
INicz
INx(u8)
JP(u16)
JPIndirect(RegisterPair)
JPcc(Condition, u16)
JR(i8)
JRcc(Condition, i8)
LD(LoadTarget, LoadTarget)
LDsr(SpecialRegister, Direction)
LDD
LDDR
LDI
LDIR
NEG
NOP
OR(Target)
OTDR
OTIR
OUTD
OUTI
OUTic(Register)
OUTicz
OUTx(u8)
POP(RegisterPair)
PUSH(RegisterPair)
RES(u8, Target, UndocumentedCopy)
RET
RETI
RETN
RETcc(Condition)
RL(Target, UndocumentedCopy)
RLA
RLC(Target, UndocumentedCopy)
RLCA
RLD
RR(Target, UndocumentedCopy)
RRA
RRC(Target, UndocumentedCopy)
RRCA
RRD
RST(u8)
SBCa(Target)
SBC16(RegisterPair, RegisterPair)
SCF
SET(u8, Target, UndocumentedCopy)
SLA(Target, UndocumentedCopy)
SLL(Target, UndocumentedCopy)
SRA(Target, UndocumentedCopy)
SRL(Target, UndocumentedCopy)
SUB(Target)
XOR(Target)
Trait Implementations§
source§impl Clone for Instruction
impl Clone for Instruction
source§fn clone(&self) -> Instruction
fn clone(&self) -> Instruction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Instruction
impl Debug for Instruction
source§impl PartialEq for Instruction
impl PartialEq for Instruction
source§fn eq(&self, other: &Instruction) -> bool
fn eq(&self, other: &Instruction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for Instruction
impl StructuralPartialEq for Instruction
Auto Trait Implementations§
impl Freeze for Instruction
impl RefUnwindSafe for Instruction
impl Send for Instruction
impl Sync for Instruction
impl Unpin for Instruction
impl UnwindSafe for Instruction
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
source§impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
source§fn into_address(self) -> T
fn into_address(self) -> T
Translate the given address into an address of type
T