diff options
| author | jackkoenig | 2016-04-20 22:34:29 -0700 |
|---|---|---|
| committer | jackkoenig | 2016-04-20 22:34:29 -0700 |
| commit | 358817eb26c07e601105f53a456ec37a63c68278 (patch) | |
| tree | ae6199e42762801845cf50de897cba90a1b62f06 /src/test/resources | |
| parent | 735f5463932dda502b8ce7c843667d0d45faae93 (diff) | |
Fix top.cpp reset race condition #137
Diffstat (limited to 'src/test/resources')
| -rw-r--r-- | src/test/resources/top.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/resources/top.cpp b/src/test/resources/top.cpp index 8bfe2a99..f7671052 100644 --- a/src/test/resources/top.cpp +++ b/src/test/resources/top.cpp @@ -40,7 +40,7 @@ int main(int argc, char** argv) { cout << "Starting simulation!\n"; while (!Verilated::gotFinish() && main_time < timeout) { - if (main_time > 10) { + if (main_time > 15) { top->reset = 0; // Deassert reset } if ((main_time % 10) == 1) { |
