From 4385bc6dcc2f88ca08751bf724be24b5fd5f0ebc Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Wed, 31 Jan 2024 14:54:08 +0100 Subject: [PATCH] Forgot signal keywords --- src/I2C.vhd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/I2C.vhd b/src/I2C.vhd index a4c67a7..b53472b 100644 --- a/src/I2C.vhd +++ b/src/I2C.vhd @@ -20,8 +20,8 @@ entity I2C is end I2C; architecture Implementation of I2C is - Clk100k : std_logic := '0'; - Clk100Counter : std_logic_vector(10 downto 0) := (others => '0'); + signal Clk100k : std_logic := '0'; + signal Clk100Counter : std_logic_vector(10 downto 0) := (others => '0'); begin