summaryrefslogtreecommitdiff
path: root/src/wb.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wb.cc')
-rw-r--r--src/wb.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wb.cc b/src/wb.cc
index cd24c6a..79efe44 100644
--- a/src/wb.cc
+++ b/src/wb.cc
@@ -45,13 +45,13 @@ void WB::write_handler()
// POP performs a second register write
reg = this->checked_out.front();
this->checked_out.pop_front();
- this->store_register(
+ this->store_register<signed int>(
reg, this->curr_instr->operands.integer.slot_three);
}
this->checked_out.pop_front();
reg = this->curr_instr->checked_out;
- this->store_register(reg, this->curr_instr->operands.integer.slot_one);
+ this->store_register<signed int>(reg, this->curr_instr->operands.integer.slot_one);
}
void WB::jump_handler()