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

EX::EX(Stage *stage) : Stage(stage) { this->id = EXEC; }

Response EX::advance(InstrDTO &next_instr, Response p) { return OK; }