I have written simple code and defined only one array. but it shows following three errors.
ERROR:HDLCompiler:806 - Syntax error near "type". Parsing entity .
ERROR:HDLCompiler:854 - Unit ignored due to previous errors. Parsing architecture of entity .
ERROR:HDLCompiler:374 - Entity is not yet compiled.
library IEEE;
use IEEE.std_logic_1164.all;
type NIBBLE is ARRAY (3 downto 0) of std_ulogic;
entity kelvin is
end kelvin;
architecture ospl of kelvin is
begin
end ospl;