diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-05-04 12:06:16 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-05-04 12:06:16 -0400 |
commit | b6e76bbdea1acf7a634c242f3118fdd79f569fc1 (patch) | |
tree | 86fe9ac3a821e2807793c5369bbece8885f69554 /pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd | |
parent | 2cc7f5bf6f16d7a8b9e78caf38dcc4986fd8bbe0 (diff) |
More linting and working vhdl_ls config
Diffstat (limited to 'pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd')
-rw-r--r-- | pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd b/pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd index 1d255c9..38227a4 100644 --- a/pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd +++ b/pb_APP_log_comb.srcs/sources_1/new/Add1BitB.vhd @@ -1,4 +1,4 @@ ----------------------------------------------------------------------------------- +------------------------------------------------------------------------------- -- Company: -- Engineer: -- @@ -16,7 +16,7 @@ -- Revision 0.01 - File Created -- Additional Comments: -- ----------------------------------------------------------------------------------- +------------------------------------------------------------------------------- library IEEE; @@ -50,35 +50,35 @@ begin buf(1) := Y; buf(2) := Ci; - case (buf) is - when "000" => - O <= '0'; - Co <= '0'; - when "001" => - O <= '1'; - Co <= '0'; - when "010" => - O <= '1'; - Co <= '0'; - when "011" => - O <= '0'; - Co <= '1'; - when "100" => - O <= '1'; - Co <= '0'; - when "101" => - O <= '0'; - Co <= '1'; - when "110" => - O <= '0'; - Co <= '1'; - when "111" => - O <= '1'; - Co <= '1'; - when others => - O <= '0'; - Co <= '0'; - end case; + case (buf) is + when "000" => + O <= '0'; + Co <= '0'; + when "001" => + O <= '1'; + Co <= '0'; + when "010" => + O <= '1'; + Co <= '0'; + when "011" => + O <= '0'; + Co <= '1'; + when "100" => + O <= '1'; + Co <= '0'; + when "101" => + O <= '0'; + Co <= '1'; + when "110" => + O <= '0'; + Co <= '1'; + when "111" => + O <= '1'; + Co <= '1'; + when others => + O <= '0'; + Co <= '0'; + end case; end process Adder; |