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

WB::WB(Stage *stage) : Stage(stage) { this->id = WRITE; }

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