Reformat countzero
authorAnton Blanchard <anton@linux.ibm.com>
Sun, 21 Mar 2021 23:07:47 +0000 (10:07 +1100)
committerAnton Blanchard <anton@ozlabs.org>
Sun, 21 Mar 2021 23:15:03 +0000 (10:15 +1100)
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
countzero.vhdl

index b46f10863138cd02035893e7f0949c599bc16cab..55a58b161e0d93523d591e227f6f656b357ebeb6 100644 (file)
@@ -8,11 +8,11 @@ use work.helpers.all;
 entity zero_counter is
     port (
         clk         : in std_logic;
-       rs          : in std_ulogic_vector(63 downto 0);
-       count_right : in std_ulogic;
-       is_32bit    : in std_ulogic;
-       result      : out std_ulogic_vector(63 downto 0)
-       );
+        rs          : in std_ulogic_vector(63 downto 0);
+        count_right : in std_ulogic;
+        is_32bit    : in std_ulogic;
+        result      : out std_ulogic_vector(63 downto 0)
+        );
 end entity zero_counter;
 
 architecture behaviour of zero_counter is