diff options
author | bd <bdunahu@operationnull.com> | 2025-04-17 19:56:53 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-17 19:56:53 -0400 |
commit | 984ce6eef2e439955ff991f90c2b654be7c6c3f3 (patch) | |
tree | e936781b52c6846d87c98381ed47bc7da7c43bff /inc/controller.h | |
parent | 082200691a5d95f716a9d1dc127c858322cdff37 (diff) |
Add option to turn off pipeline
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; }; |