Fix ghdl build error with pp_soc_memory
authorAnton Blanchard <anton@linux.ibm.com>
Tue, 27 Aug 2019 12:12:33 +0000 (22:12 +1000)
committerAnton Blanchard <anton@ozlabs.org>
Tue, 27 Aug 2019 12:12:33 +0000 (22:12 +1000)
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
fpga/pp_soc_memory.vhd

index bdb1882715291afeb9a10dee4572bf9742cc863b..de39ec89c6a7c44289db715ebe7ab6d41616a6af 100644 (file)
@@ -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;