首页|嵌入式系统|显示技术|模拟IC/电源|元件与制造|其他IC/制程|消费类电子|无线/通信|汽车电子|工业控制|医疗电子|测试测量
首页 > 分享下载 > 消费类电子 > 如何用HDL中设计高效率的比较器

如何用HDL中设计高效率的比较器

资料介绍
如何用HDL中设计高效率的比较器COLUMN

Creating the Most Efficient Comparators
by Roberta Fulton, Technical Marketing Engineer, Xilinx, roberta.fulton@xilinx.com

HDL ADVISOR

THE XILINX

C

omparators are best modeled with word-wise compares within a PROCESS or an ALWAYS block that contains the IF statement and an ELSE clause, and no ELSE-IF clauses. Conditional signal assignments in VHDL or conditional continuous assignments in Verilog could be used, but at a high cost in simulation time. Without the sensitivity list in VHDL or the event list in Verilog the simulators would constantly be checking the statements even when the inputs

Comparator A - Bit by Bit Compare
library IEEE; use IEEE.STD_LOGIC_1164.all, IEEE.NUMERIC_STD.all; entity COMPARATOR_A is port (AIN1, AIN2: in unsigned(7 downto 0); AEQ: out std_logic); en
标签:如何中设计高效率的比较器
如何用HDL中设计高效率的比较器
本地下载

评论