summaryrefslogtreecommitdiff
path: root/src/sim/if.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/if.cc')
-rw-r--r--src/sim/if.cc22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/sim/if.cc b/src/sim/if.cc
index 1026072..deed8e1 100644
--- a/src/sim/if.cc
+++ b/src/sim/if.cc
@@ -1,15 +1,19 @@
#include "if.h"
-#include "logger.h"
+#include "accessor.h"
+#include "instrDTO.h"
#include "response.h"
-static Logger *global_log = Logger::getInstance();
-
-Response IF::advance()
+Response IF::advance(InstrDTO &i)
{
- global_log->log(INFO, "hello from fetch!");
- return OK;
-}
-
-
+ Response r;
+ signed int bits;
+ r = this->storage->read_word(this->id, this->pc, bits);
+ if (r == OK) {
+ ++this->pc;
+ i.set_if_cycle(this->clock_cycle);
+ i.set_instr_bits(bits);
+ }
+ return r;
+}