From: Anton Blanchard Date: Mon, 23 Sep 2019 11:22:18 +0000 (+1000) Subject: Terminate test on illegal instruction X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cae10eebd043979a0b1cec0db0f1024e979abd4;p=microwatt.git 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 --- 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;