diff options
author | bd <bdunaisky@umass.edu> | 2025-04-16 15:56:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-16 15:56:32 +0000 |
commit | b778ccc3e7c2f2ac3c4892a87f5269f342fd895f (patch) | |
tree | 481b94886edf89f3bf08d06b96092298d1cdbf8c /gui/worker.h | |
parent | 561f7a6e6c24b05383b6db86b48125ee80a8355f (diff) | |
parent | f9e5214e87a935e1311b886e44bdfe1f8bfbdf56 (diff) |
Merge pull request #51 from bdunahu/dev-sid
[WIP] 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(); }; |