VHDL基础(用8)研讨.pptVIP

  • 10
  • 0
  • 约3.15万字
  • 约 100页
  • 2017-05-08 发布于湖北
  • 举报
VHDL基础(用8)研讨

process(cp,ld,ct,u_d ,iq) begin if(ld=0)then iq=d; elsif(cpevent and cp=1) then if(ct=0and u_d=0) then iq=iq+1; elsif(ct=0and u_d=1) then iq=iq-1; else iq=iq; end if; end if; q=iq; end process; end behave; 8.序列信号发生器 教材【例8-19】 用VHDL语言描述8位计数型序列信 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity senqgen is port(clk:in std_logic; z:out std_logic); end entity senqgen; architecture art of senqgen is signal count:std_logic

文档评论(0)

1亿VIP精品文档

相关文档