- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
* * * * * * * * CMOS与非门(nand) * * * * 集成电路设计方法学发展 逻辑模拟: 功能、性能(时序) + d a b c e f * 集成电路设计方法学发展 模拟波形 A B C D E F * 集成电路设计方法学发展 第三代: EDA( Electronics Design Automation) 90年代 Top-Down Design(Top-Down设计技术): Hardware Description Language + Synthesis * IC设计内容 Function Logic Circuit Layout . X=A and B Y=C nor D . A B A B B X V Vss Vss Vdd A B C D X Y Z X Vdd VSS Verification * Top_down 设计流程 Spec. Behavior HDL RTL HDL High-Level Synthesis Netlist PlacementRouting IC Layout FPGA Area Timing Power DFT Cell Library Design Rule. ………... Simulating and Verification FPGA Compiler Synthesis 1G2G 3G * 集成电路设计方法学发展 Behavioral Description (Specification) y”+3 x y’+3 y = 0 用数值解 x1=x+d; y1=y+u*d ; u1=u - (3*x*u*d)- (3*y*d); 已知 x、y、u 做一个IC专用电路,来求x+a 时yout 通过模拟来验证算法正确性 X1-X = d (y1-y)/(x1-x) = u=y’ y1-y =u*d y”=(y’1-y’)/X1-X= (u1-u)/d u1=u-3*X*u*d-3*y*d * use std.all entity diffeq is port (xin, yin, uin: in integer; xout, yout : out integer); generic ( a,d : integer) end diffeq; architecture diffeq of diffeq is begin process (xin, yin, uin) variable x,y,u : integer; variable x1,y1,u1 : integer; begin x:=xin; y:=yin; u:=uin; while (xa) loop x1:=x+d; y1:=y+u*d; u1:=u-(3*x*u*d)-3*y*d); end loop; xout=x; yout=y; end process; end deffeq; VHDL Description (算法级行为描述) * 集成电路设计方法学发展 高层次综合(High-Level Synthesis)目标 Behavioral Description at the algorithmic Level The behavioral in term of operation and computation sequences on inputs to produce the required outputs is specified. 将在行为域用操作和计算式表示的算法级描述作为输入,由EDA工具自动生成所要求的结构域输出(结构级RTL宏模块) * 集成电路设计方法学发展 ★ High-Level Synthesis 其中有 6次乘法、2次加法、2次减法、1次比较 a) 可以用2个乘法器、1个加法器、1个
原创力文档


文档评论(0)