# CELL: FRED # Simple test cell circuit to test: # y1, y2 = (x1 and x2) , not x3 # x3 = 0 # This cell is using the foo cell which we defined earlier GATE("x1", type="inp") GATE("x2", type="inp") GATE("y1", type="out") GATE("y2", type="out") GATE("g1", type="foo") GATE("g0", type="zero") WIRE("x1", "g1/x1") WIRE("x2", "g1/x2") WIRE("g0", "g1/x3") WIRE("g1/y1", "y1") WIRE("g1/y2", "y2")