diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-04-21 19:59:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-21 19:59:56 -0400 |
commit | 1250359dfcbcad18c0a1078290f95479aa23e26a (patch) | |
tree | c53fa2bfd360a3bdcfbb2a4c6029e454d91456e1 /gui/worker.h | |
parent | 282e2644ef0470133184fdf9900cf2565ec5332b (diff) | |
parent | 98b9786ccab6fdee37a779fdd55b58176abf12d9 (diff) |
Merge pull request #58 from bdunahu/bdunahu
[WIP] Add tab bar, multi-level cache display
Diffstat (limited to 'gui/worker.h')
-rw-r--r-- | gui/worker.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gui/worker.h b/gui/worker.h index 62c8d84..95c81d5 100644 --- a/gui/worker.h +++ b/gui/worker.h @@ -70,9 +70,7 @@ class Worker : public QObject signals: void clock_cycles(int value, int pc); 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); + storage(const std::vector<std::array<signed int, LINE_SIZE>> data, int i); 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); |