summaryrefslogtreecommitdiff
path: root/gui/gui.h
diff options
context:
space:
mode:
authorbd <bdunaisky@umass.edu>2025-04-28 03:44:42 +0000
committerGitHub <noreply@github.com>2025-04-28 03:44:42 +0000
commit013a79547aa465872d0262b2f5c24e73f9556869 (patch)
tree28cc8f2ea6e5aa1a74f328de8594b0ad5995fa66 /gui/gui.h
parent5653b2a033e7a4173d2f178b5ce52384666d3d7b (diff)
parent336faf3fd701aaf962613abd1ff0a69cbdf021ce (diff)
Merge pull request #69 from bdunahu/vector_ext
Vector ext
Diffstat (limited to 'gui/gui.h')
-rw-r--r--gui/gui.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/gui.h b/gui/gui.h
index 830d852..edcde88 100644
--- a/gui/gui.h
+++ b/gui/gui.h
@@ -68,9 +68,11 @@ class GUI : public QMainWindow
void onWorkerWriteBackInfo(const InstrDTO *);
+ void onWorkerStepsDone();
+
void onWorkerShowStorage(const QVector<QVector<int>> &data, int i);
- void onWorkerShowRegisters(const std::array<int, GPR_NUM> &data);
+ void onWorkerShowRegisters(const QVector<signed int> &gprs, const QVector<QVector<signed int>> &vrs);
void on_upload_intructions_btn_clicked();