公告
welcome here
做课程设计的时候学了一点,这几个都是很简单的程序,希望对需要的朋友有用!~
10 Jul.2008

vhdl 15位m序列发生 不指定

作者: 菜鸟学编程   分类:VHDL   出处:本站原创   
entity test is    port(qout:out std_logic;  clkin,clrin:in std_logic);

end test;

architecture structual of test is component dfcib    port(d:in std_logic; clk:in std_logic;  clr:in std_logic;  q:out std_logic);

end component;
时间:23:50 评论(1) 引用(0) 阅读(2359) Tags: , , , ,
10 Jul.2008

vhdl 7输入并入串出 不指定

作者: 菜鸟学编程   分类:VHDL   出处:本站原创   
entity bingruchuanchu is port(clk,input1,input2,input3,input4,input5,input6,input7:in std_logic;

                                                             output:out std_logic);

end entity;

architecture guocheng of bingruchuanchu is    signal   chucun:std_logic_vector(6 downto 0);    
时间:23:50 评论(0) 引用(0) 阅读(737) Tags: , , , ,
10 Jul.2008

vhdl 等占空比四分频 不指定

作者: 菜鸟学编程   分类:VHDL   出处:本站原创   
entity clk_div is    

port(clk:in std_logic;          clk_div4,clk_div2:out std_logic);

end clk_div;

architecture rtl of clk_div is signal count:std_logic_vector(1 downto 0 );
时间:23:49 评论(0) 引用(0) 阅读(985) Tags: , , , ,
10 Jul.2008

vhdl 非百分之五十占空比的七分频 不指定

作者: 菜鸟学编程   分类:VHDL   出处:本站原创   
entity clk_div7 is port(clk:in std_logic;          

                                      clk_div_7:out std_logic);

end clk_div7;

architecture rtl of clk_div7 is signal count :std_logic_vector(2 downto 0);
时间:23:48 评论(0) 引用(0) 阅读(594) Tags: , , , ,
10 Jul.2008

vhdl 串入并出 不指定

作者: 菜鸟学编程   分类:VHDL   出处:本站原创   
library ieee;

use ieee.std_logic_1164.all;

use ieee.std_logic_arith.all;

use ieee.std_logic_unsigned.all;
时间:23:47 评论(0) 引用(0) 阅读(711) Tags: , , , ,
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]