diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-03-08 21:07:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-08 21:07:09 -0500 |
commit | 0c6c9f8074aa5c356e2a1e582ab81355967a2060 (patch) | |
tree | e76871ceee74d36a660d5347c694493411426a7b /src/storage/dram.cc | |
parent | 71ce62bd7797300c72b635a81ebcf677be4936a7 (diff) | |
parent | 7e64289d658d077ceffaa9f7272ccbe0f27277fa (diff) |
Merge pull request #14 from bdunahu/bdunahuer
Storage.view + Dram.store methods, tests
Diffstat (limited to 'src/storage/dram.cc')
-rw-r--r-- | src/storage/dram.cc | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/src/storage/dram.cc b/src/storage/dram.cc index 20858cd..7db5676 100644 --- a/src/storage/dram.cc +++ b/src/storage/dram.cc @@ -1,21 +1,41 @@ -#include <dram.h> -#include <response.h> +#include "dram.h" +#include "definitions.h" +#include "response.h" +#include <algorithm> Dram::Dram(int lines, int delay) { - this->data = new std::vector<std::array<unsigned int, 4>>; + this->data = new std::vector<std::array<signed int, LINE_SIZE>>; this->data->resize(lines); this->delay = delay; + this->wait_time = this->delay; this->lower = nullptr; + this->requester = IDLE; } Dram::~Dram() { delete this->data; } -Response *Dram::write(Accessor accessor, signed int data, int address) +Response Dram::write(Accessor accessor, signed int data, int address) { - return new Response(); -} + Response r = WAIT; + + if (accessor == SIDE) { + this->do_write(data, address); + r = OK; + } else { + /* Do this first--then process the first cycle immediately. */ + if (this->requester == IDLE) + this->requester = accessor; -Response *Dram::read(Accessor accessor, int address) { return nullptr; } + if (this->requester == accessor) { + if (this->wait_time == 0) { + this->do_write(data, address); + r = OK; + } + } + } + + return r; +} -int **Dram::view(int base, int lines) { return nullptr; } +Response Dram::read(Accessor accessor, int address) { return WAIT; } |