aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_gui/mainwindow.h')
-rw-r--r--qtmips_gui/mainwindow.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/qtmips_gui/mainwindow.h b/qtmips_gui/mainwindow.h
index 999c966..3c1cf9f 100644
--- a/qtmips_gui/mainwindow.h
+++ b/qtmips_gui/mainwindow.h
@@ -9,6 +9,7 @@
#include "registersdock.h"
#include "programdock.h"
#include "memorydock.h"
+#include "cachedock.h"
#include "qtmipsmachine.h"
#include "machineconfig.h"
@@ -32,6 +33,8 @@ public slots:
void show_registers();
void show_program();
void show_memory();
+ void show_cache_data();
+ void show_cache_program();
// Actions - execution speed
void set_speed();
// Machine signals
@@ -53,7 +56,7 @@ private:
RegistersDock *registers;
ProgramDock *program;
MemoryDock *memory;
- // TODO implement cache docks
+ CacheDock *cache_program, *cache_data;
QActionGroup *speed_group;