summaryrefslogtreecommitdiff
path: root/src/sim/mm.cc
blob: f3944205341f8f12453aebad6f61c2a78acd86b8 (plain)
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;
}