摘要: 1.利用dbShapeQuery函数 hier_list = dbShapeQuery(cv list("M1" "drawing") enterBox(?points mouseAddPt())) 2.利用transform dbCopyFig foreach(hier hier_list ;;h 阅读全文
posted @ 2024-06-26 15:13 Vincent_Wood 阅读(365) 评论(0) 推荐(0)
摘要: list1 = list( "A" "B" "C")list2 = list( "B" "C" "E" "F") result = append(setof(ele list1 !member(ele list2)) setof(ele list2 !member(ele list1))) 对于Fl 阅读全文
posted @ 2024-06-18 09:28 Vincent_Wood 阅读(25) 评论(0) 推荐(0)
摘要: [Def] M1A 31.255 [Def] M1B 31.256 [Def] M2A 32.255 [Def] M2B 32.255 [Def] CM1A 31.109 [Def] CM1B 31.110 [Def] VIA1 51.250 [Via] M1A M2A VIA1 [Via] M1A 阅读全文
posted @ 2024-06-05 10:57 Vincent_Wood 阅读(92) 评论(0) 推荐(0)
摘要: 在抽CDL的时候,如果用到了cds_thru器件,在子cell中,往往会生成为一个电阻 需要在.simrc中加入如下: when(simSimulator == "auCdl" procedure(CCSCdlConnect(netdpl)let(((fp netdpl->fd->fp)) artF 阅读全文
posted @ 2024-05-11 10:54 Vincent_Wood 阅读(439) 评论(0) 推荐(0)
摘要: viewTypeList = list("maskLayout" "schematic" "schematicSymbol") srcList = gdmCreateSpecList() src = gdmCreateSpec(t_lib cell_name "" "" "CDBA") gdmAdd 阅读全文
posted @ 2024-02-07 11:06 Vincent_Wood 阅读(111) 评论(0) 推荐(0)
摘要: 正常在schematic中,想通过~>来逐层找到length,fin,finger是比较艰难的 需要用到下面的方法: l_para = dbSearchPropByName(cell "l") nfin_para = dbSearchPropByName(cell "nfin") fingers_p 阅读全文
posted @ 2024-02-06 16:15 Vincent_Wood 阅读(111) 评论(0) 推荐(0)
摘要: makefile实例: if(-e $1) then foreach cell (`awk '{print}' $1`) make -f ./makefile CELLNAME=$cell $argv[2-] end else make -f ./makefile CELLNAME=$1 $argv 阅读全文
posted @ 2024-02-05 15:28 Vincent_Wood 阅读(43) 评论(0) 推荐(0)
摘要: 需要将cds.lib copy过来,保证abstract能够吃到工艺的相关信息 absSkillMode() absSetOption("NewLibraryPath" "./") absSetOption("NewLibraryName" "TEST") absSetLibrary("TEST") 阅读全文
posted @ 2024-02-01 15:29 Vincent_Wood 阅读(349) 评论(0) 推荐(0)
摘要: Place the below code in a SKILL file pretranslate.il ;; x pretranslate.il x procedure( poPreTranslate( lib cell view)prog( (cv)printf("In PreTranslate 阅读全文
posted @ 2024-01-25 15:33 Vincent_Wood 阅读(403) 评论(0) 推荐(0)
摘要: 调整Layout最小grid: envSetVal("layout" "xSnapSpacing" `float 0.01) envSetVal("layout" "xSnapSpacing" `float 0.01) 检查pin顺序: envSetVal("auCore.misc" "update 阅读全文
posted @ 2024-01-16 15:21 Vincent_Wood 阅读(466) 评论(0) 推荐(0)