diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-04-28 21:49:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-28 21:49:25 -0400 |
commit | 32a1762b3b9091f6e2d553601f3e3a3a5d87b889 (patch) | |
tree | cb12daab120a8298d5e78219602fded822bdd671 /src/controller.cc | |
parent | 9e7debd7bff14893f2722c37f42d9c6b70fbdcbf (diff) | |
parent | 930ec733e988c4996918065b4656f0508c6e2df6 (diff) |
Merge pull request #76 from bdunahu/bdunahu
Fix bug with pipeline blockage, swap DRAM delay to 100
Diffstat (limited to 'src/controller.cc')
-rw-r--r-- | src/controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.cc b/src/controller.cc index a5c6691..e439b30 100644 --- a/src/controller.cc +++ b/src/controller.cc @@ -35,7 +35,7 @@ Controller::Controller(Stage *stage, Storage *storage, bool is_pipelined) this->gprs.at(2) = MEM_WORDS; // set the stack pointer } -void Controller::run_for(int number) +void Controller::run_for(long number) { int i; for (i = 0; i < number; ++i) { |