summaryrefslogtreecommitdiff
path: root/src/sim/ex.cc
blob: c9c2116d9041dd52828331c915bb892d303cda0d (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 &i, Response p) { return OK; }