blob: 5bc5836641daeb40469d211dcaa335199eebcd22 (
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; }
InstrDTO *MM::advance(Response p)
{
return nullptr;
}
|