7 lines
149 B
C++
7 lines
149 B
C++
#include "block.h"
|
|
|
|
CacheSim::Block::Block(short tagSize) {
|
|
this->valid = false;
|
|
this->tag.assign(tagSize, 0);
|
|
this->tagSize = tagSize;
|
|
} |