1 2 3 4 5 6 7 8 9 10 11 12
#include "mm.h" #include "accessor.h" #include "instrDTO.h" #include "response.h" #include "stage.h" MM::MM(Stage *stage) : Stage(stage) { this->id = MEM; } Response MM::advance(InstrDTO &next_instr, Response p) { return OK; }