1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-28 02:33:09 +00:00

Fix ghdlsynth issue in register file

We need to drive sim_dump_done to keep ghdlsynth happy.

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2020-01-11 14:29:39 +11:00
committed by Anton Blanchard
parent f37ef56d79
commit b0212b0bf9

View File

@@ -92,4 +92,9 @@ begin
end process;
end generate;
-- Keep GHDL synthesis happy
sim_dump_test_synth: if not SIM generate
sim_dump_done <= '0';
end generate;
end architecture behaviour;