aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/coreview.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-01-21 20:46:16 +0100
committerKarel Kočí <cynerd@email.cz>2018-01-21 20:46:16 +0100
commitcdc1f889a5d302c9ad83846e1b686523f26ed423 (patch)
tree187c6062f5f777f210a1e04abb128d50a46f1ada /qtmips_gui/coreview.h
parentb0a3e568a9e10ee9d99e8679b2ddd697705e756c (diff)
downloadqtmips-cdc1f889a5d302c9ad83846e1b686523f26ed423.tar.gz
qtmips-cdc1f889a5d302c9ad83846e1b686523f26ed423.tar.bz2
qtmips-cdc1f889a5d302c9ad83846e1b686523f26ed423.zip
Add instruction view to single core
Diffstat (limited to 'qtmips_gui/coreview.h')
-rw-r--r--qtmips_gui/coreview.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/qtmips_gui/coreview.h b/qtmips_gui/coreview.h
index ed8a8ad..d5b39c1 100644
--- a/qtmips_gui/coreview.h
+++ b/qtmips_gui/coreview.h
@@ -84,16 +84,15 @@ protected:
class CoreViewSceneSimple : public CoreViewScene {
public:
CoreViewSceneSimple(CoreView *view, machine::QtMipsMachine *machine);
- ~CoreViewSceneSimple();
private:
+ coreview::InstructionView *instr_prim, *instr_delay;
coreview::Latch *delay_slot_latch;
};
class CoreViewScenePipelined : public CoreViewScene {
public:
CoreViewScenePipelined(CoreView *view, machine::QtMipsMachine *machine);
- ~CoreViewScenePipelined();
private:
coreview::Latch *latch_if_id, *latch_id_ex, *latch_ex_mem, *latch_mem_wb;