Changed instruction size from wsize() * 4 to wsize() * 8

This commit is contained in:
Santosh Srivatsan
2021-12-13 20:42:44 -05:00
parent d8796efd89
commit 71acf4eadb

View File

@@ -369,7 +369,7 @@ std::ostream &operator<<(std::ostream &os, const Instr &instr) {
} }
Decoder::Decoder(const ArchDef &arch) { Decoder::Decoder(const ArchDef &arch) {
inst_s_ = arch.wsize() * 4; inst_s_ = arch.wsize() * 8;
opcode_s_ = 7; opcode_s_ = 7;
reg_s_ = 5; reg_s_ = 5;
func2_s_ = 2; func2_s_ = 2;