From 137b1ee32c10aa27c7b979393b538272983783ef Mon Sep 17 00:00:00 2001 From: Dolu1990 Date: Thu, 22 Feb 2018 22:36:13 +0100 Subject: [PATCH] Briey testbench, fix io_coreInterrupt to zero to avoid external interrupt set by random boots values --- src/test/cpp/briey/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/cpp/briey/main.cpp b/src/test/cpp/briey/main.cpp index d06a606..2243dce 100644 --- a/src/test/cpp/briey/main.cpp +++ b/src/test/cpp/briey/main.cpp @@ -416,6 +416,8 @@ public: Vga *vga = new Vga(top,640,480); vgaClk->add(vga); #endif + + top->io_coreInterrupt = 0; }