- 1、本文档共54页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VHDL语法应用课件
;VHDL数据类型和操作符
简单综合示例
多路选择器的VHDL模型
VHDL语言的库文件
用VHDL进程模拟寄存器和 计数器
VHDL的行为和结构描述
变量、信号和常数
数组
VHDL中的循环
Assert和Report语句;复 习 ;器件或
子系统;信号赋值语句:
信号名 = 表达式 [after 延时];;;复 习 ;entity nogates is
port(A, B, C: in bit;
D: buffer bit;
E: out bit);
end nogates;
architecture behave of nogates is
begin
process(A, B, C)
begin
D = A or B after 5 ns; -- statement 1
E = C or D after 5 ns; -- statement 2
end process;
end behave;;系统响应 ;8、两种VHDL延迟:传输延迟和惯性延迟;9、VHDL代码的编译,仿真和综合;;9、VHDL代码的编译,仿真和综合;9、VHDL代码的编译,仿真和综合;;10、VHDL数据类型和操作符;10、VHDL数据类型和操作符;10、VHDL数据类型和操作符;(A not B or C ror 2 and D) = 110010;A sll 2 得(逻辑左移,用 0填补空位)
A srl 3 (逻辑右移,用 0填补空位)
A sla 3 (算术左移,用最左端位填补空位)
A sra 2 (算术右移,用最右端位填补空位)
A rol 3 (循环左移)
A ror 5 (循环右移);11、简单综合示例;entity Q3 is
port(A,B,F, CLK: in bit;
G: out bit);
end Q3;
architecture circuit of Q3 is
signal C: bit;
begin
process(Clk)
begin
if (Clk = 1 and Clkevent) then
C = A and B; -- 语句1
G = C or F; -- 语句2
end if;
end process;
end circuit;;触发器和锁存器;entity no_syn is
port(A,B, CLK: in bit;
D: out bit);
end no_syn;
architecture no_synthesis of no_syn is
signal C: bit;
begin
process(Clk)
begin
if (Clk=1 and Clkevent) then
C = A and B;
end if;
end process;
end no_synthesis;;12、多路选择器的VHDL模型;sel =A B --选择信号赋值语句
with sel select
F = I0 when “00”,
I1 when “01”,
I2 when “10”,
I3 when “11”;;12、多路选择器的VHDL模型;13、VHDL语言的库文件;IEEE 库
定义了四个常用的包集合:
? std_logic_1164
(std_logic types related functions)
? std_logic_arith
(arithmetic functions)
? std_logic_signed
(signed arithmetic functions)
? std_logic_unsigned
(unsigned arithmetic functions) ;13、VHDL语言的库文件;13、VHDL语言的库文件;13、VHDL语言的库文件;13、VHDL语言的库文件;14、用VHDL进程模拟寄存器和计数器;14、用VHDL进程模拟寄存器和计数器;14、用VHDL进程模拟寄存器和计数器;14、用VHDL进程模拟寄存器和计数器;15、VHDL的行为和结构描述;15、VHDL的行为和结构描述;15、VHDL的行为和结构描述;15、VHDL的行为和结构描述;1
文档评论(0)