diff options
author | bd <bdunahu@operationnull.com> | 2025-03-08 20:32:29 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-08 20:32:29 -0500 |
commit | 5a24c4b2012cd2d5fe954deb3b973cb6125e860d (patch) | |
tree | e76871ceee74d36a660d5347c694493411426a7b /src/storage | |
parent | dcc22079fc1c455df70ab1263ea09400e4c948d6 (diff) |
Properly initialize the requester
Diffstat (limited to 'src/storage')
-rw-r--r-- | src/storage/dram.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage/dram.cc b/src/storage/dram.cc index 7197668..7db5676 100644 --- a/src/storage/dram.cc +++ b/src/storage/dram.cc @@ -10,6 +10,7 @@ Dram::Dram(int lines, int delay) this->delay = delay; this->wait_time = this->delay; this->lower = nullptr; + this->requester = IDLE; } Dram::~Dram() { delete this->data; } |