diff options
| author | lonkaars <loek@pipeframe.xyz> | 2022-11-27 19:58:08 +0100 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2022-11-27 19:58:08 +0100 |
| commit | 453e099644b253bedc98bb20861d48f3eb40ef4f (patch) | |
| tree | 0fead272e68e67a317b15b7bcc0378ddcdf279dc /src/eq8b.vhd | |
| parent | d2cbbf49cf8e866af996672ff1b34bb428091261 (diff) | |
ALU working, design needs updating + writing testbenches
Diffstat (limited to 'src/eq8b.vhd')
| -rw-r--r-- | src/eq8b.vhd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/eq8b.vhd b/src/eq8b.vhd index 0c382a8..1f929e5 100644 --- a/src/eq8b.vhd +++ b/src/eq8b.vhd @@ -4,8 +4,7 @@ USE ieee.numeric_std.all; entity eq8b is port ( - A: in std_logic_vector(7 downto 0); - B: in std_logic_vector(7 downto 0); + A, B: in std_logic_vector(7 downto 0); Equal: out std_logic); end eq8b; |