数字后端基本概念介绍<stop pin>

640?wx_fmt=gif

今天要介绍的数字后端基本概念是stop pin。全称是停止引脚。也是CTS工具中常见的几种引脚之一。

CTS工具在trace clock tree的过程中,会把stop pin当做是该skew group的sink, CTS工具会识别并balance它。是用于平衡延迟的时钟树的终点。

一般工具会默认地把register的clock pin当成是stop pin,当然,也可以人为通过命令指定:

使用方法

set_ccopt_property sink_type -pin {SUB_Sh4Lmi_PH/f4h22TcSUB_Sh4Lmi_PH/f4h22TcSUB_Sh4Lmi_PH/f4h22Tc3000a_0X_SUB_Sh4Lmi_PH/f4h22TcSUB_Sh4Lmi_PH/f4h22TcTIE/reg[9]/CK} stop

640?wx_fmt=jpeg

往期回顾

简历请戳邮箱:taozhang3260@163.com

觉得有用的话,给我点个好看吧640?wx_fmt=gif

  • 0
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
用jquery改写以下程序<!DOCTYPE html> <html lang="en"> <head> <title>Styles Example</title> <style type="text/css"> .myDiv { background-color: blue; width: 150px; height: 150px; margin-right: 20px; display: table-cell; vertical-align: middle; text-align: center } .highlight { font-size: xx-large; } span { display: block; color: yellow; text-align: center; } </style> </head> <body> <table> <tr> <td> <div class="myDiv highlight"> <span>虎虎生威</span> </div> </td> <td> <div class="myDiv"> <span>生龙活虎</span> </div> </td> </tr> <tr> <td> <div class="myDiv"> <span>如虎添翼</span> </div> </td> <td> <div class="myDiv"> <span>卧虎藏龙</span> </div> </td> </table> <button onclick="start()" id="start">开始</button> <button onclick="stop()" disabled="disabled" id="stop">停止</button> <button onclick="resume()" disabled="disabled" id="resume">继续</button> <script> let divs = document.querySelectorAll(".myDiv");//取得所有div let startButton = document.getElementById("start");//取得开始按钮 let stopButton = document.getElementById("stop");//取得停止按钮 let resumeButton = document.getElementById("resume");//取得继续按钮 let nums = [0, 1, 3, 2]; let index = 0, timerId; function start() { startButton.disabled = true; for (let num of nums) { divs[nums[index]].classList.remove("highlight"); } index = 0; divs[nums[0]].classList.add("highlight"); resume(); } function stop() { clearInterval(timerId); stopButton.disabled = true; startButton.removeAttribute("disabled"); resumeButton.removeAttribute("disabled"); } function resume() { resumeButton.disabled = true; stopButton.removeAttribute("disabled"); timerId = window.setInterval(function () { divs[nums[index]].classList.remove("highlight"); index = (index + 1) % 4; divs[nums[index]].classList.add("highlight"); }, 500); } </script> </body> </html>
05-25
<!DOCTYPE html> <html lang="en"> <head> <title>Styles Example</title> <style type="text/css"> .myDiv { background-color: blue; width: 150px; height: 150px; margin-right: 20px; display: table-cell; vertical-align: middle; text-align: center } .highlight { font-size: xx-large; } span { display: block; color: yellow; text-align: center; } </style> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script> </head> <body> <table> <tr> <td> <div class="myDiv highlight"> <span>虎虎生威</span> </div> </td> <td> <div class="myDiv"> <span>生龙活虎</span> </div> </td> </tr> <tr> <td> <div class="myDiv"> <span>如虎添翼</span> </div> </td> <td> <div class="myDiv"> <span>卧虎藏龙</span> </div> </td> </table> <button onclick="start()" id="start">开始</button> <button onclick="stop()" disabled="disabled" id="stop">停止</button> <button onclick="resume()" disabled="disabled" id="resume">继续</button> <script> let divs = $(".myDiv"); //取得所有div let startButton = $("#start"); //取得开始按钮 let stopButton = $("#stop"); //取得停止按钮 let resumeButton = $("#resume"); //取得继续按钮 let nums = [0, 1, 3, 2]; let index = 0, timerId; function start() { startButton.prop("disabled", true); for (let num of nums) { divs.eq(nums[index]).removeClass("highlight"); } index = 0; divs.eq(nums[0]).addClass("highlight"); resume(); } function stop() { clearInterval(timerId); stopButton.prop("disabled", true); startButton.removeAttr("disabled"); resumeButton.removeAttr("disabled"); } function resume() { resumeButton.prop("disabled", true); stopButton.removeAttr("disabled"); timerId = window.setInterval(function () { divs.eq(nums[index]).removeClass("highlight"); index = (index + 1) % 4; divs.eq(nums[index]).addClass("highlight"); }, 500); } </script> </body> </html>

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值