ft(interpreter): impl mov
This commit is contained in:
@@ -95,6 +95,18 @@ impl ImmediateOperand {
|
||||
}
|
||||
}
|
||||
|
||||
impl From<Byte> for ImmediateOperand {
|
||||
fn from(value: Byte) -> Self {
|
||||
Self::Byte(value)
|
||||
}
|
||||
}
|
||||
|
||||
impl From<Word> for ImmediateOperand {
|
||||
fn from(value: Word) -> Self {
|
||||
Self::Word(value)
|
||||
}
|
||||
}
|
||||
|
||||
impl Into<usize> for ImmediateOperand {
|
||||
fn into(self) -> usize {
|
||||
match self {
|
||||
|
||||
Reference in New Issue
Block a user