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
commit7e64289d658d077ceffaa9f7272ccbe0f27277fa (patch)
treee76871ceee74d36a660d5347c694493411426a7b
parentc4c985bfffca6f4b7dc9e08e275837f2b213b593 (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; }