CacheSim/block.cpp
2021-12-31 02:21:58 +08:00

7 lines
149 B
C++

#include "block.h"
CacheSim::Block::Block(short tagSize) {
this->valid = false;
this->tag.assign(tagSize, 0);
this->tagSize = tagSize;
}