@@ -34,10 +34,10 @@ def __init__(self, m, name=None, datawidth=32, itype=None, otype=None,
3434 m , otype , name_almost_full , initval = 0 )
3535
3636 def connect (self , targ ):
37- util . connect_port ( self .enq , targ .enq )
38- util . connect_port ( self .wdata , targ .wdata )
39- util . connect_port ( targ .full , self .full )
40- util . connect_port ( targ .almost_full , self .almost_full )
37+ self .enq . connect ( targ .enq )
38+ self .wdata . connect ( targ .wdata )
39+ targ .full . connect ( self .full )
40+ targ .almost_full . connect ( self .almost_full )
4141
4242
4343class FifoReadInterface (object ):
@@ -67,10 +67,10 @@ def __init__(self, m, name=None, datawidth=32, itype=None, otype=None,
6767 m , otype , name_almost_empty , initval = 0 )
6868
6969 def connect (self , targ ):
70- util . connect_port ( self .deq , targ .deq )
71- util . connect_port ( targ .rdata , self .rdata )
72- util . connect_port ( targ .empty , self .empty )
73- util . connect_port ( targ .almost_empty , self .almost_empty )
70+ self .deq . connect ( targ .deq )
71+ targ .rdata . connect ( self .rdata )
72+ targ .empty . connect ( self .empty )
73+ targ .almost_empty . connect ( self .almost_empty )
7474
7575
7676class FifoWriteSlaveInterface (FifoWriteInterface ):
0 commit comments