summaryrefslogtreecommitdiff
path: root/src/sim/id.cc
blob: 87dce0c78260a782b6a22e07e28a1dd726d51c70 (plain)
1
2
3
4
5
6
7
8
9
#include "id.h"
#include "accessor.h"
#include "instrDTO.h"
#include "response.h"
#include "stage.h"

ID::ID(Stage *stage) : Stage(stage) { this->id = DCDE; }

Response ID::advance(InstrDTO &i) { return OK; }