chore: naming parity

This commit is contained in:
2025-05-15 17:48:41 +09:00
parent 1c7ddbe9fa
commit cb924af0fb
2 changed files with 2 additions and 2 deletions

View File

@@ -570,7 +570,7 @@ impl Disassembler {
0xC0..=0xC1 => return Err(DisasmError::OpcodeUndefined(opcode)), 0xC0..=0xC1 => return Err(DisasmError::OpcodeUndefined(opcode)),
0xC2 => Mnemonic::RETIw(self.parse_word()), 0xC2 => Mnemonic::RET_Iw(self.parse_word()),
0xC3 => Mnemonic::RET, 0xC3 => Mnemonic::RET,
0xC4..=0xC5 => todo!("LES and LDS not yet implemented"), 0xC4..=0xC5 => todo!("LES and LDS not yet implemented"),

View File

@@ -257,7 +257,7 @@ pub enum Mnemonic {
SCASB, SCASB,
SCASW, SCASW,
// RET // RET
RETIw(Word), RET_Iw(Word),
RET, RET,
RETF_Iw(Word), RETF_Iw(Word),
RETF, RETF,