diff options
author | bd <bdunaisky@umass.edu> | 2025-04-18 00:58:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-18 00:58:40 +0000 |
commit | 480181957b3f3dbcf7731023504c2cacc8d181ea (patch) | |
tree | e936781b52c6846d87c98381ed47bc7da7c43bff /inc/controller.h | |
parent | 62b9e280d5d0222710e491dcd28fe26bea915dcd (diff) | |
parent | 984ce6eef2e439955ff991f90c2b654be7c6c3f3 (diff) |
Merge pull request #54 from bdunahu/bdunahu
The pipeline says some things and there are numbers
Diffstat (limited to 'inc/controller.h')
-rw-r--r-- | inc/controller.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/inc/controller.h b/inc/controller.h index f56b1b4..778c5bc 100644 --- a/inc/controller.h +++ b/inc/controller.h @@ -19,7 +19,7 @@ class Controller : public Stage */ Controller(Stage *stage, Storage *storage, bool is_pipelined); InstrDTO *advance(Response p) override; - + /** * Direct the simulator to run for `number` clock cycles. * @param the number of clock cycles to run for. @@ -38,10 +38,6 @@ class Controller : public Stage */ int get_pc(); - void set_gprs(int index, int value); - - void set_pipelined(bool value); - private: void advance_helper() override; }; |