예제 #1
0
파일: Tests.py 프로젝트: grocid/E0_Python
 def setUp(self):
     self.dsource = Component.DynamicSource(Bits('0b100'), Bits('0b0'))
예제 #2
0
파일: Tests.py 프로젝트: grocid/E0_Python
 def setUp(self):
     a = BitArray('0b10101')
     a.reverse()
     self.LFSR = Component.LFSR(Component.DynamicSource(a, Bits('0b0')),
                                Bits('0b101'), 2)