diff options
Diffstat (limited to 'inc/ex.h')
-rw-r--r-- | inc/ex.h | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -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; }; |