summaryrefslogtreecommitdiff
path: root/src/sim/wb.cc
blob: 7a8d64c70da134bb20d035e7af783d6bcc773524 (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; }

InstrDTO *WB::advance(Response p) { return nullptr; }