基于innovus的全加器数字芯片物理实现(step by step) 2022-03-13 未分类zhagang Link: https://aijishu.com/a/1060000000141620 环境设置 创建一个单独的目录(例如,innovus)。 创建子目录synth和lib 1、 将full_add…
Rocket Risc-V core setup and configuration 2021-02-21 未分类zhagang Link: http://pages.cs.wisc.edu/~karu/courses/cs752/fall2016/wiki/index.php?n=Main.RocketCore 1. Ins…
Change hostname for RHEL6 2021-02-07 未分类zhagang Change the HOSTNAME in /etc/sysconfig/network HOSTNAME=eda001Add one line in /etc/hosts 127.0.0.1 ed…
CdV/dt-Induced Turn-On 2020-10-26 未分类zhagang Note that there is a phenomenon called CdV/dt-induced turn-on that is known to cause cross-conductio…
数字库全局电源改为Inherited电源 2020-07-06 未分类zhagang 步骤1:Copy一份原始的数字库做为Work Library,将库中无schematic的单元全部删除,主要是filler cell。 步骤2:用skill函数将库中所有schematic的vdd!和…
Convert Python to Executable & Convert UI file to py file 2020-06-05 未分类zhagang This “auto-py-to-exe” application displays a simple interface that allows you to convert…
正则表达式使用技巧 2020-05-13 未分类zhagang 匹配以“http”开头的整行字符串:^http.*$匹配任意含http的整行:^.*http.*$匹配以“http”结尾的整行字符串:^.*http$匹配不包含“http”的整行:^((?!http)…