📄 74161_1.vhd
字号:
-- Copyright (C) 1991-2006 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any
-- associated documentation or information are expressly subject
-- to the terms and conditions of the Altera Program License
-- Subscription Agreement, Altera MegaCore Function License
-- Agreement, or other applicable license agreement, including,
-- without limitation, that your use is for the sole purpose of
-- programming logic devices manufactured by Altera and sold by
-- Altera or its authorized distributors. Please refer to the
-- applicable agreement for further details.
-- PROGRAM "Quartus II"
-- VERSION "Version 6.0 Build 202 06/20/2006 Service Pack 1 SJ Full Version"
LIBRARY ieee;
USE ieee.std_logic_1164.all;
LIBRARY work;
ENTITY 74161_1 IS
PORT
(
CLRN : IN STD_LOGIC;
CLK : IN STD_LOGIC;
ENP : IN STD_LOGIC;
LDN : IN STD_LOGIC;
A : IN STD_LOGIC;
D : IN STD_LOGIC;
ENT : IN STD_LOGIC;
B : IN STD_LOGIC;
C : IN STD_LOGIC;
QD : OUT STD_LOGIC;
QC : OUT STD_LOGIC;
QB : OUT STD_LOGIC;
QA : OUT STD_LOGIC;
RCO : OUT STD_LOGIC
);
END 74161_1;
ARCHITECTURE bdf_type OF 74161_1 IS
BEGIN
-- instantiate macrofunction
b2v_inst1 : 74161
PORT MAP(CLRN => CLRN,
CLK => CLK,
ENP => ENP,
LDN => LDN,
A => A,
D => D,
ENT => ENT,
B => B,
C => C,
QD => QD,
QC => QC,
QB => QB,
QA => QA,
RCO => RCO);
END;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -