File "_primary.vhd"

Full Path: /home/analogde/www/VERILOG/work/hex_test/_primary.vhd
File size: 321 bytes
MIME-type: text/plain
Charset: utf-8

library verilog;
use verilog.vl_types.all;
entity hex_test is
    port(
        clk             : in     vl_logic;
        sw              : in     vl_logic_vector(7 downto 0);
        an              : out    vl_logic_vector(3 downto 0);
        seg             : out    vl_logic_vector(7 downto 0)
    );
end hex_test;