diff options
author | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-04-15 11:59:27 -0400 |
---|---|---|
committer | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-04-15 11:59:27 -0400 |
commit | f9e5214e87a935e1311b886e44bdfe1f8bfbdf56 (patch) | |
tree | 481b94886edf89f3bf08d06b96092298d1cdbf8c /gui/worker.h | |
parent | 561f7a6e6c24b05383b6db86b48125ee80a8355f (diff) |
Added pipeline to GUI
Diffstat (limited to 'gui/worker.h')
-rw-r--r-- | gui/worker.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gui/worker.h b/gui/worker.h index 99ab39a..ee8926b 100644 --- a/gui/worker.h +++ b/gui/worker.h @@ -44,6 +44,11 @@ signals: void dram_storage(const std::vector<std::array<signed int, LINE_SIZE>> data); void cache_storage(const std::vector<std::array<signed int, LINE_SIZE>> data); void register_storage(const std::array<int, GPR_NUM> data); + void if_info(const std::vector<int> info); + void id_info(const std::vector<int> info); + void ex_info(const std::vector<int> info); + void mm_info(const std::vector<int> info); + void wb_info(const std::vector<int> info); void finished(); }; |