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 | 7e64289d658d077ceffaa9f7272ccbe0f27277fa (patch) | |
tree | e76871ceee74d36a660d5347c694493411426a7b /src/storage | |
parent | c4c985bfffca6f4b7dc9e08e275837f2b213b593 (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; } |