summaryrefslogtreecommitdiff
path: root/inc/ex.h
diff options
context:
space:
mode:
authorSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-04-26 20:21:02 -0400
committerSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-04-26 20:21:02 -0400
commit41f612789f652654b5f2fa8c3fee4e348e2081b1 (patch)
tree386658b4231c6c1daa4f2f9769959d0934b2b44e /inc/ex.h
parent73633535288711de4850b9d9eec6326eb5de06c0 (diff)
Initial vector extension changes
Diffstat (limited to 'inc/ex.h')
-rw-r--r--inc/ex.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/inc/ex.h b/inc/ex.h
index c356543..58237ab 100644
--- a/inc/ex.h
+++ b/inc/ex.h
@@ -63,7 +63,7 @@ class EX : public Stage
* @param The next stage in the pipeline.
* @return A newly allocated EX object.
*/
- EX(Stage *next);
+ using Stage::Stage;
using Stage::advance;
private:
@@ -81,11 +81,6 @@ class EX : public Stage
* logic.
* All instructions store the result into s1.
*/
- std::unordered_map<
- Mnemonic,
- std::function<void(
- signed int &s1, signed int s2, signed int s3, unsigned int pc)>>
- instr_map;
};
#endif /* EX_H_INCLUDED */