From 28a43d12f184e97a1900aa7b7d7f095ca4301894 Mon Sep 17 00:00:00 2001 From: Paul Gardner-Stephen Date: Fri, 5 Apr 2024 00:22:36 +1030 Subject: [PATCH] fix copy-pasta #798 --- src/vhdl/keypad_i2c.vhdl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vhdl/keypad_i2c.vhdl b/src/vhdl/keypad_i2c.vhdl index a5a56ff3a..4ca9cca9c 100644 --- a/src/vhdl/keypad_i2c.vhdl +++ b/src/vhdl/keypad_i2c.vhdl @@ -56,7 +56,7 @@ use ieee.numeric_std.all; use Std.TextIO.all; use work.debugtools.all; -entity mega65r4_i2c is +entity keypad_i2c is generic ( clock_frequency : integer); port ( clock : in std_logic; @@ -77,9 +77,9 @@ entity mega65r4_i2c is fastio_addr : in unsigned(19 downto 0) ); -end mega65r4_i2c; +end keypad_i2c; -architecture behavioural of mega65r4_i2c is +architecture behavioural of keypad_i2c is signal i2c1_address : unsigned(6 downto 0) := to_unsigned(0,7); signal i2c1_address_internal : unsigned(6 downto 0) := to_unsigned(0,7);