disasm/sim: changed interface, added readline to sim
[calu.git] / 3c_disasm / instr / ldw.cpp
index 354e23fa28dc24c30d6e34d9099a35534140e44f..6420a5517d204fb501df6816243eaef63beb31e5 100644 (file)
@@ -60,7 +60,7 @@ void Cldw::evalInstr()
 
 void Cldw::execInstr()
 {
-       cout << "should exec " << this->toString() << endl;
+       //cout << "should exec " << this->toString() << endl;
        CDat val = this->m_cpu->getRegister(this->m_ra);
        val += m_imm;
        val = this->m_cpu->getRAM(val);