aboutsummaryrefslogtreecommitdiff
path: root/src/eq8b.vhd
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-11-27 19:58:08 +0100
committerlonkaars <loek@pipeframe.xyz>2022-11-27 19:58:08 +0100
commit453e099644b253bedc98bb20861d48f3eb40ef4f (patch)
tree0fead272e68e67a317b15b7bcc0378ddcdf279dc /src/eq8b.vhd
parentd2cbbf49cf8e866af996672ff1b34bb428091261 (diff)
ALU working, design needs updating + writing testbenches
Diffstat (limited to 'src/eq8b.vhd')
-rw-r--r--src/eq8b.vhd3
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;