aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/core.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-11-25 15:08:07 +0100
committerKarel Kočí <cynerd@email.cz>2017-11-25 15:08:07 +0100
commitfcb67b16d13de62092e3720d08adb0ef5e35de3d (patch)
treeca9daaf9d80e14bddff224f2f7e81123acdd7dd8 /qtmips_machine/core.h
parentf5d4468b2a8afa28ddad0bad425f762725eb69a7 (diff)
downloadqtmips-fcb67b16d13de62092e3720d08adb0ef5e35de3d.tar.gz
qtmips-fcb67b16d13de62092e3720d08adb0ef5e35de3d.tar.bz2
qtmips-fcb67b16d13de62092e3720d08adb0ef5e35de3d.zip
Test pipelined core
Diffstat (limited to 'qtmips_machine/core.h')
-rw-r--r--qtmips_machine/core.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/qtmips_machine/core.h b/qtmips_machine/core.h
index 9829741..b566a38 100644
--- a/qtmips_machine/core.h
+++ b/qtmips_machine/core.h
@@ -69,6 +69,12 @@ public:
CorePipelined(Registers *regs, MemoryAccess *mem);
void step();
+
+private:
+ struct Core::dtFetch dt_f;
+ struct Core::dtDecode dt_d;
+ struct Core::dtExecute dt_e;
+ struct Core::dtMemory dt_m;
};
#endif // CORE_H