summaryrefslogtreecommitdiff
path: root/src/sim/mm.cc
blob: 93c5b8742efa2714c679d442a3746c60938ce0ca (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 &i, Response p)
{
	return OK;
}