diff options
author | Karel Kočí <cynerd@email.cz> | 2017-12-17 13:44:26 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-12-17 13:44:26 +0100 |
commit | 21da0f6723f3887d200917b4720dd22261e4420a (patch) | |
tree | 2146344bc1966cd248e21000c922cf0a127b0bde /qtmips_gui/coreview.h | |
parent | 63163510aecfe19d976a9125ff2151698c4efb51 (diff) | |
download | qtmips-21da0f6723f3887d200917b4720dd22261e4420a.tar.gz qtmips-21da0f6723f3887d200917b4720dd22261e4420a.tar.bz2 qtmips-21da0f6723f3887d200917b4720dd22261e4420a.zip |
Implement alu for coreview
Diffstat (limited to 'qtmips_gui/coreview.h')
-rw-r--r-- | qtmips_gui/coreview.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qtmips_gui/coreview.h b/qtmips_gui/coreview.h index 7e9081a..8c0701e 100644 --- a/qtmips_gui/coreview.h +++ b/qtmips_gui/coreview.h @@ -8,6 +8,7 @@ #include "coreview/programcounter.h" #include "coreview/multiplexer.h" #include "coreview/latch.h" +#include "coreview/alu.h" class CoreView : public QGraphicsView { Q_OBJECT @@ -21,6 +22,7 @@ private: machine::QtMipsMachine *machine; coreview::ProgramCounter *pc; + coreview::Alu *alu; coreview::Multiplexer *pc_multiplexer; coreview::Connection *pc2pc; coreview::Latch *testlatch; |