litex/examples/basic/graycounter.py

20 lines
525 B
Python
Raw Normal View History

2013-04-24 13:13:36 -04:00
from random import Random
from migen.fhdl.std import *
2013-04-24 13:13:36 -04:00
from migen.genlib.cdc import GrayCounter
2014-01-26 16:19:43 -05:00
from migen.sim.generic import run_simulation
2013-04-24 13:13:36 -04:00
class TB(Module):
def __init__(self, width=3):
self.width = width
self.submodules.gc = GrayCounter(self.width)
self.prng = Random(7345)
2014-01-26 16:19:43 -05:00
def do_simulation(self, selfp):
print("{0:0{1}b} CE={2} bin={3}".format(selfp.gc.q,
self.width, selfp.gc.ce, selfp.gc.q_binary))
selfp.gc.ce = self.prng.getrandbits(1)
2013-04-24 13:13:36 -04:00
2014-01-26 16:19:43 -05:00
if __name__ == "__main__":
run_simulation(TB(), ncycles=35)