[sim] bug + display
[calu.git] / 3c_disasm / instr / add.cpp
index b5cd4f9fb6d90662941c78b3d956a2ff7f81cd09..a6967e490999e48a3a44366f337472a3c1c55454 100644 (file)
@@ -76,6 +76,6 @@ std::string Cadd::toString()
        if(m_d) op << 'D';
        if(m_c) op << 'C';
 
-       op << " r" << m_rd << ", r" << m_ra << ", r" << m_rb;
+       op << this->getConditionFlag() << " r" << m_rd << ", r" << m_ra << ", r" << m_rb;
        return op.str();
 }