blob: 2b7320781aea9cf8a4d464de9b00b3c85b3cfcbb (
plain)
1
2
3
4
5
6
7
8
9
|
#include "mm.h"
#include "accessor.h"
#include "instrDTO.h"
#include "response.h"
#include "stage.h"
MM::MM(Stage *stage) : Stage(stage) { this->id = MEM; }
void MM::advance_helper() {}
|