From 6cae10eebd043979a0b1cec0db0f1024e979abd4 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Mon, 23 Sep 2019 21:22:18 +1000 Subject: [PATCH] Terminate test on illegal instruction This gets the CI going again, but we will want to fix the test harness since it's useful to be able to debug the core after it executes an illegal instruction. Signed-off-by: Anton Blanchard --- core.vhdl | 1 + 1 file changed, 1 insertion(+) diff --git a/core.vhdl b/core.vhdl index e7ea1de..21ceb1a 100644 --- a/core.vhdl +++ b/core.vhdl @@ -271,6 +271,7 @@ begin loop_0: for i in 0 to 31 loop report "REG " & to_hstring(registers(i)); end loop loop_0; + assert false report "end of test" severity failure; end if; end process; end generate;