From: Anton Blanchard Date: Tue, 27 Aug 2019 12:12:33 +0000 (+1000) Subject: Fix ghdl build error with pp_soc_memory X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=95b9f19882f8323de8b009994617456abc895da3;p=microwatt.git Fix ghdl build error with pp_soc_memory Signed-off-by: Anton Blanchard --- diff --git a/fpga/pp_soc_memory.vhd b/fpga/pp_soc_memory.vhd index bdb1882..de39ec8 100644 --- a/fpga/pp_soc_memory.vhd +++ b/fpga/pp_soc_memory.vhd @@ -66,7 +66,7 @@ begin wb_ack_out <= read_ack and wb_stb_in; - process(clk) + memory_0: process(clk) begin if rising_edge(clk) then if reset = '1' then @@ -102,6 +102,6 @@ begin end if; end if; end if; - end process clk; + end process; end architecture behaviour;