litex/examples/basic_sim.py

39 lines
1.1 KiB
Python
Raw Normal View History

2012-03-05 14:31:41 -05:00
from migen.fhdl.structure import *
2012-03-10 13:38:39 -05:00
from migen.sim.generic import Simulator
2012-03-05 14:31:41 -05:00
from migen.sim.icarus import Runner
2012-03-10 13:38:39 -05:00
# Our simple counter, which increments at every cycle
# and prints its current value in simulation.
2012-03-05 14:31:41 -05:00
class Counter:
def __init__(self):
2012-03-10 13:38:39 -05:00
self.count = Signal(BV(4))
2012-03-05 14:31:41 -05:00
2012-03-10 13:38:39 -05:00
# This function will be called at every cycle.
2012-03-06 13:29:39 -05:00
def do_simulation(self, s):
2012-03-10 13:38:39 -05:00
# Simply read the count signal and print it.
# The output is:
# Count: 0
# Count: 1
# Count: 2
# ...
print("Count: " + str(s.rd(self.count)))
2012-03-05 14:31:41 -05:00
def get_fragment(self):
2012-03-10 13:38:39 -05:00
# At each cycle, increase the value of the count signal.
# We do it with convertible/synthesizable FHDL code.
sync = [self.count.eq(self.count + 1)]
# List our simulation function in the fragment.
2012-03-05 14:31:41 -05:00
sim = [self.do_simulation]
return Fragment(sync=sync, sim=sim)
2012-03-06 09:00:02 -05:00
def main():
dut = Counter()
2012-03-10 13:38:39 -05:00
# Use the Icarus Verilog runner.
# We do not specify a top-level object, and use the default.
sim = Simulator(dut.get_fragment(), Runner())
# Since we do not use sim.interrupt, limit the simulation
# to some number of cycles.
2012-03-06 10:46:18 -05:00
sim.run(20)
2012-03-06 09:00:02 -05:00
main()