fixed simX multicore support, added shared memory

This commit is contained in:
Blaise Tine
2021-03-04 20:45:27 -08:00
parent 5e3a949d2d
commit 8a86bddd3e
18 changed files with 824 additions and 717 deletions

View File

@@ -121,7 +121,6 @@ std::shared_ptr<Instr> Decoder::decode(
}
}
// std::cout << "op: " << std::hex << op << " what " << sc_instTable[op].iType << "\n";
switch (curInstType) {
case InstType::N_TYPE:
break;
@@ -311,7 +310,7 @@ std::shared_ptr<Instr> Decoder::decode(
}
}
D(2, "Decoded instr 0x" << std::hex << code << " into: " << instr << std::flush);
D(2, "Decoded instr 0x" << std::hex << code << " into: " << *instr << std::flush);
return instr;
}