diff --git a/Core/DisassemblyInfo.cpp b/Core/DisassemblyInfo.cpp index 89ff6c98..b394c96a 100644 --- a/Core/DisassemblyInfo.cpp +++ b/Core/DisassemblyInfo.cpp @@ -37,7 +37,7 @@ string DisassemblyInfo::ToString(uint32_t memoryAddr, shared_ptr } if(operandValue.empty()) { - if(_opSize == 2) { + if(_opSize == 2 && _opMode != AddrMode::Rel) { operandValue += "$" + HexUtilities::ToHex((uint8_t)_opAddr); } else { operandValue += "$" + HexUtilities::ToHex((uint16_t)_opAddr);