litex/examples/sim/basic1.py

40 lines
1.1 KiB
Python
Raw Normal View History

2012-03-23 11:41:30 -04:00
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from migen.fhdl.std import *
2012-03-10 13:38:39 -05:00
from migen.sim.generic import Simulator
2012-03-05 14:31:41 -05:00
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):
self.count = Signal(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()
2013-02-09 11:04:53 -05:00
# We do not specify a top-level nor runner object, and use the defaults.
sim = Simulator(dut.get_fragment())
2012-03-10 13:38:39 -05:00
# 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()