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