summaryrefslogtreecommitdiff
path: root/src/storage/dram.cc
diff options
context:
space:
mode:
authorSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-11 01:31:43 -0400
committerSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-11 11:32:33 -0400
commit7284cc1391dbb250cd6738a75853be7e3576fa41 (patch)
treecb4c89f9ccd7ed94868dc4b5d1f73a9fdb5be55a /src/storage/dram.cc
parent33c7c78b1c65c375d0291fd435e02ddc9d35681b (diff)
Write line, dirty cache eviction, cache load word/line (for future multilevel cache implementation)
Diffstat (limited to 'src/storage/dram.cc')
-rw-r--r--src/storage/dram.cc22
1 files changed, 13 insertions, 9 deletions
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<signed int, LINE_SIZE> &data_line, int address)
+{
+ int line = address / LINE_SIZE;
+ data_line = this->data->at(line);
+}
+
+void Dram::write_line(std::array<signed int, LINE_SIZE> 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<signed int, LINE_SIZE> &data_line, int address)
-{
- int line = address / LINE_SIZE;
- data_line = this->data->at(line);
-}
-
-Response Dram::read(
- Accessor accessor, int address, std::array<signed int, LINE_SIZE> &data)
-{
+Response Dram::read(Accessor accessor, int address, std::array<signed int, LINE_SIZE>& data) {
Response r = WAIT;
if (this->requester == IDLE)