diff options
author | bd <bdunahu@operationnull.com> | 2025-04-22 20:49:26 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-22 20:49:26 -0400 |
commit | 95d09e12792cf5ececd32b8dc84f2cd090c496ef (patch) | |
tree | 8660a5fba2e60df5d34712383d727ad46809307d /src/sim/if.cc | |
parent | 1bbc5b157e16dae032b5e44a7dcf009766eb9ca5 (diff) |
Remove the accessor object
Diffstat (limited to 'src/sim/if.cc')
-rw-r--r-- | src/sim/if.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sim/if.cc b/src/sim/if.cc index e8e7272..054c77c 100644 --- a/src/sim/if.cc +++ b/src/sim/if.cc @@ -16,13 +16,10 @@ // along with this program. If not, see <https://www.gnu.org/licenses/>. #include "if.h" -#include "accessor.h" #include "instrDTO.h" #include "response.h" #include "stage.h" -IF::IF(Stage *stage) : Stage(stage) { this->id = FETCH; } - InstrDTO *IF::advance(Response p) { InstrDTO *r = nullptr; |