summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-08 20:32:29 -0500
committerbd <bdunahu@operationnull.com>2025-03-08 20:32:29 -0500
commit5a24c4b2012cd2d5fe954deb3b973cb6125e860d (patch)
treee76871ceee74d36a660d5347c694493411426a7b
parentdcc22079fc1c455df70ab1263ea09400e4c948d6 (diff)
Properly initialize the requester
-rw-r--r--src/storage/dram.cc1
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; }