Skip to content

Commit

Permalink
fix copy-pasta #798
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Gardner-Stephen committed Apr 4, 2024
1 parent a5e3d63 commit 28a43d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vhdl/keypad_i2c.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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);
Expand Down

0 comments on commit 28a43d1

Please sign in to comment.