Skip to content

Commit 4ba30bf

Browse files
committed
Remove old wire function from Sky130Platform
1 parent 81814bd commit 4ba30bf

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

chipflow_lib/platforms/silicon.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -333,16 +333,6 @@ def __init__(self,
333333
self._gpio_analog_sel = None # analog mux select
334334
self._gpio_analog_pol = None # analog mux select
335335

336-
def wire(self, m: Module, interface: PureInterface):
337-
super().wire(m, interface)
338-
339-
# wire up drive mode bits
340-
bit = 0
341-
for i in self._dms:
342-
m.d.comb += self._dm0[bit].eq(i[0]) # type: ignore
343-
m.d.comb += self._dm1[bit].eq(i[1]) # type: ignore
344-
m.d.comb += self._dm2[bit].eq(i[2]) # type: ignore
345-
346336
def instantiate_toplevel(self):
347337
ports = super().instantiate_toplevel()
348338
for s, d in self._signals:

0 commit comments

Comments
 (0)