summaryrefslogtreecommitdiff
path: root/inc/mm.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/mm.h')
-rw-r--r--inc/mm.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/inc/mm.h b/inc/mm.h
index 5e2b029..0d2ce82 100644
--- a/inc/mm.h
+++ b/inc/mm.h
@@ -7,9 +7,14 @@
class MM : public Stage
{
public:
- using Stage::Stage;
+ /**
+ * Constructor.
+ * @param The next stage in the pipeline.
+ * @return A newly allocated MM object.
+ */
+ MM(Stage *next);
- Response advance(InstrDTO &i) override;
+ Response advance(InstrDTO &next_instr, Response p) override;
};
#endif /* MM_H_INCLUDED */