aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources
diff options
context:
space:
mode:
authorjackkoenig2016-04-20 22:34:29 -0700
committerjackkoenig2016-04-20 22:34:29 -0700
commit358817eb26c07e601105f53a456ec37a63c68278 (patch)
treeae6199e42762801845cf50de897cba90a1b62f06 /src/test/resources
parent735f5463932dda502b8ce7c843667d0d45faae93 (diff)
Fix top.cpp reset race condition #137
Diffstat (limited to 'src/test/resources')
-rw-r--r--src/test/resources/top.cpp2
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) {