From 1e1279817e8a2a03b8c1acb9425464c82a065e01 Mon Sep 17 00:00:00 2001 From: Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> Date: Tue, 11 Mar 2025 01:31:43 -0400 Subject: Write line, dirty cache eviction, cache load word/line (for future multilevel cache implementation) --- src/storage/dram.cc | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) (limited to 'src/storage/dram.cc') diff --git a/src/storage/dram.cc b/src/storage/dram.cc index e755c2a..290d38b 100644 --- a/src/storage/dram.cc +++ b/src/storage/dram.cc @@ -28,6 +28,18 @@ void Dram::do_write(signed data, int address) this->data->at(line).at(word) = data; } +void Dram::do_read(std::array &data_line, int address) +{ + int line = address / LINE_SIZE; + data_line = this->data->at(line); +} + +void Dram::write_line(std::array data_line, int address){ + int line = address / LINE_SIZE; + this->data->at(line) = data_line; +} + + Response Dram::write(Accessor accessor, signed int data, int address) { Response r = WAIT; @@ -51,15 +63,7 @@ Response Dram::write(Accessor accessor, signed int data, int address) return r; } -void Dram::do_read(std::array &data_line, int address) -{ - int line = address / LINE_SIZE; - data_line = this->data->at(line); -} - -Response Dram::read( - Accessor accessor, int address, std::array &data) -{ +Response Dram::read(Accessor accessor, int address, std::array& data) { Response r = WAIT; if (this->requester == IDLE) -- cgit v1.2.3