summaryrefslogtreecommitdiff
path: root/src/sim/stage.cc
blob: 399743a9499830008f9ba37b6bbe880f1e979ff4 (plain)
1
2
3
4
5
6
7
8
9
#include "stage.h"

Stage::Stage(Stage *next) {
	this->next = next;
}

std::array<int, GPR_NUM> Stage::gprs;
int Stage::pc;
Storage *Stage::storage;