- 11
- 0
- 约1.06千字
- 约 16页
- 2017-04-21 发布于浙江
- 举报
2.4 VHDL主要描述方式;VHDL主要描述方式;行为描述方式;行为描述方式;数据流描述方式;
;半加器;全加器;全加器;元件例化语句;练习题;entity And2 is
port (x, y : in bit; z: out bit);
end And2;
architecture ex1 of And2 is
begin z = x and y;
end ex1; ;entity Or2 is
port (x, y : in bit; z: out bit);
end entity Or2;
architecture ex1 of Or2 is
begin z = x or y;
end architecture ex1; ;entity Not1 is
port (x : in bit; z: out bit);
end entity Not1;
architecture ex1 of Not1 is
begin z = not x;
end architecture ex1; ;entity comb_function is
port (a, b, c : in bit; z: out bit);
end entity comb_function;
architecture netlist of co
您可能关注的文档
- 王安帮-应用光学 20141210-L12II 像差.ppt
- 王安帮-应用光学 20141224.L13II-L14 光学传递函数.ppt
- 王华昌-CAD技术基础教学 《CAD技术基础》教学大纲.doc
- 王华昌-CAD技术基础教学 《CAD技术基础》教学大纲v2014.doc
- 王华昌-CAD技术基础教学 5-1 cadcam_参数化方法.ppt
- 王华昌-CAD技术基础教学 5-2 cadcam_参数化方法.ppt
- 王华昌-CAD技术基础教学 cad_第三章_几何造型.ppt
- 王华昌-CAD技术基础教学 cad_第三章3.2节_曲线曲面.ppt
- 王华昌-CAD技术基础教学 CAD技术基础_ 第一章概论.ppt
- 王华昌-CAD技术基础教学 第八章-PDM讲义.ppt
原创力文档

文档评论(0)