diff options
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; } |