diff options
author | bd <bdunahu@operationnull.com> | 2025-03-26 22:01:54 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-26 22:01:54 -0400 |
commit | 8d37d15ebd1221e3b1698abb3b051d9d0c044c93 (patch) | |
tree | fd3263d2754d662fdad6d69851f14a84f44db4d1 /src | |
parent | c30535c914a8ac32278f1af0b16968550d0fb466 (diff) |
Fix timing issues in fetch tests
Diffstat (limited to 'src')
-rw-r--r-- | src/sim/controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/controller.cc b/src/sim/controller.cc index 2813905..6d46dc4 100644 --- a/src/sim/controller.cc +++ b/src/sim/controller.cc @@ -5,7 +5,7 @@ Controller::Controller(Stage *stage, Storage *storage, bool is_pipelined) : Stage(stage) { - this->clock_cycle = 0; + this->clock_cycle = 1; this->storage = storage; this->is_pipelined = is_pipelined; this->pc = 0x0; |