⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prep7.vhd

📁 多个Verilog和vhdl程序例子
💻 VHD
字号:
-- PREP Benchmark 7, Sixteen Bit Counter
-- PREP7 contains a sixteen bit counter

-- Copyright (c) 1994-1996 Synplicity, Inc.
-- You may distribute freely, as long as this header remains attached.

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;

entity prep7 is 
    port(
          clk, rst, ld, ce : in std_logic;
          d : in std_logic_vector (15 downto 0);
          q : out std_logic_vector (15 downto 0) 
    );
end prep7;

architecture behave of prep7 is

    signal q_i: std_logic_vector (15 downto 0);

begin
    -- register the adder output
    accum: process (rst, clk)
    begin
        if  rst = '1' then
            q_i <= (others => '0');
        elsif rising_edge(clk) then
            if ld = '1' then
                q_i <= d;
            elsif ce = '1' then 
                q_i <= q_i + '1';
            end if;
        end if;
    end process accum;
    q <= q_i;
end behave;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -