2012-03-23 11:41:30 -04:00
|
|
|
# Copyright (C) 2012 Vermeer Manufacturing Co.
|
|
|
|
# License: GPLv3 with additional permissions (see README).
|
|
|
|
|
2013-05-22 11:11:09 -04:00
|
|
|
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.
|
2013-07-24 12:47:25 -04:00
|
|
|
class Counter(Module):
|
2012-03-05 14:31:41 -05:00
|
|
|
def __init__(self):
|
2012-11-29 15:22:38 -05:00
|
|
|
self.count = Signal(4)
|
2013-07-24 12:47:25 -04:00
|
|
|
|
|
|
|
# At each cycle, increase the value of the count signal.
|
|
|
|
# We do it with convertible/synthesizable FHDL code.
|
|
|
|
self.sync += self.count.eq(self.count + 1)
|
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
|
|
|
|
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.
|
2013-07-24 12:47:25 -04:00
|
|
|
sim = Simulator(dut)
|
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()
|