blob: c5357f9627be55186552fa623164a604724ae161 (
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)
{
return OK;
}
|