summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/ex.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/inc/ex.h b/inc/ex.h
index 4edf873..19c3ac9 100644
--- a/inc/ex.h
+++ b/inc/ex.h
@@ -19,19 +19,13 @@ class EX : public Stage
private:
/**
- * Sets the (over|under)flow condition code if adding `a` and `b` results in
- * either.
- * @param the first operand
- * @param the second operand
- */
- void overflow_guard(signed int a, signed int b);
- /**
* Maps each mnemonic to a function which carries out the instruction's base
* logic.
+ * All instructions store the result into s1.
*/
std::unordered_map<
Mnemonic,
- std::function<void(signed int &s1, signed int &s2)>>
+ std::function<void(signed int &s1, signed int s2)>>
instr_map;
};