summaryrefslogtreecommitdiff
path: root/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2025-05-04 12:06:16 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2025-05-04 12:06:16 -0400
commitb6e76bbdea1acf7a634c242f3118fdd79f569fc1 (patch)
tree86fe9ac3a821e2807793c5369bbece8885f69554 /pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd
parent2cc7f5bf6f16d7a8b9e78caf38dcc4986fd8bbe0 (diff)
More linting and working vhdl_ls config
Diffstat (limited to 'pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd')
-rw-r--r--pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd18
1 files changed, 9 insertions, 9 deletions
diff --git a/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd b/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd
index 0b1ed7c..ca031bb 100644
--- a/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd
+++ b/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd
@@ -1,4 +1,4 @@
-----------------------------------------------------------------------------------
+-------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
@@ -16,7 +16,7 @@
-- Revision 0.01 - File Created
-- Additional Comments:
--
-----------------------------------------------------------------------------------
+-------------------------------------------------------------------------------
library IEEE;
@@ -31,19 +31,19 @@ use IEEE.STD_LOGIC_1164.ALL;
--library UNISIM;
--use UNISIM.VComponents.all;
-entity Add1BitA is
- Port ( X : in STD_LOGIC;
- Y : in STD_LOGIC;
- Ci : in STD_LOGIC;
- O : out STD_LOGIC;
- Co : out STD_LOGIC);
+entity Add1BitA is Port (
+ X : in STD_LOGIC;
+ Y : in STD_LOGIC;
+ Ci : in STD_LOGIC;
+ O : out STD_LOGIC;
+ Co : out STD_LOGIC);
end Add1BitA;
architecture Behavioral of Add1BitA is
begin
- O <= (X xor Y) xor Ci;
+ O <= (X xor Y) xor Ci;
Co <= ((X xor Y) and Ci) or (X and Y);
end;