LatchTest.Rose
Last Edited by: Spreitzer, May 8, 1985 3:42:01 pm PDT
Last Edited by: Gasbarro, August 16, 1984 2:35:18 pm PDT
Imports BiasTypes;
Library Latch, RoseClocks;
CellType "LatchTest"
Expand
n0, n1, n2, n3: BIT ←v "L";
gnd: BIT ←v "L" 𡤍 |SwitchTypes.refInput|;
vdd: BIT ←v "H" 𡤍 |SwitchTypes.refInput|;
biasMinus: BIAS ←v "-";
ph1, ph2: BIT;
cg: ClockGen[][ph1, ph2];
l0: InvertingLatch[ph1, n0, n1];
l1: InvertingLatch[ph2, n1, n2];
l2: InvertingLatch[ph1, n2, n3];
l3: InvertingLatch[ph2, n3, n0]
EndCellType