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

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

std::array<int, GPR_NUM> Stage::gprs;
unsigned int Stage::pc;
Storage *Stage::storage;
bool Stage::is_pipelined;
int Stage::clock_cycle;