1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
This commit is contained in:
jand 2003-11-17 17:43:28 +00:00
parent 9798799992
commit 325ef4cbce

View File

@ -0,0 +1,117 @@
import os
path = os.path
import unittest
from unittest import TestCase
import random
from random import randrange
random.seed(2)
from myhdl import *
ACTIVE_LOW, INACTIVE_HIGH = 0, 1
def inc_initial(count, enable, clock, reset, n):
""" Incrementer with enable.
count -- output
enable -- control input, increment when 1
clock -- clock input
reset -- asynchronous reset input
n -- counter max value
"""
for i in range(100):
yield posedge(clock), negedge(reset)
if reset == ACTIVE_LOW:
count.next = 0
else:
if enable:
count.next = (count + 1) % n
raise StopSimulation
objfile = "inc_initial_1.o"
analyze_cmd = "iverilog -o %s inc_initial_1.v tb_inc_initial_1.v" % objfile
simulate_cmd = "vvp -m ../../../cosimulation/icarus/myhdl.vpi %s" % objfile
def top(count, enable, clock, reset, n, arch="myhdl"):
if arch == "verilog":
if path.exists(objfile):
os.remove(objfile)
os.system(analyze_cmd)
return Cosimulation(simulate_cmd, **locals())
else:
inc_initial_inst = inc_initial(count, enable, clock, reset, n)
return inc_initial_inst
class TestInc_initial(TestCase):
def clockGen(self, clock):
while 1:
yield delay(10)
clock.next = not clock
def stimulus(self, enable, clock, reset):
reset.next = ACTIVE_LOW
yield negedge(clock)
reset.next = INACTIVE_HIGH
for i in range(1000):
enable.next = min(1, randrange(5))
yield negedge(clock)
raise StopSimulation
def check(self, count, count_v, enable, clock, reset, n):
expect = 0
yield posedge(reset)
self.assertEqual(count, expect)
self.assertEqual(count, count_v)
while 1:
yield posedge(clock)
if enable:
expect = (expect + 1) % n
yield delay(1)
print "%d count %s expect %s" % (now(), count, expect)
self.assertEqual(count, expect)
self.assertEqual(count, count_v)
def bench(self):
m = 8
n = 2 ** m
count = Signal(intbv(0)[m:])
count_v = Signal(intbv(0)[m:])
enable, clock, reset = [Signal(bool()) for i in range(3)]
inc_initial_1 = toVerilog(top, count, enable, clock, reset, n=n)
inc_initial_v = top(count_v, enable, clock, reset, n=n, arch='verilog')
clk_1 = self.clockGen(clock)
st_1 = self.stimulus(enable, clock, reset)
ch_1 = self.check(count, count_v, enable, clock, reset, n=n)
sim = Simulation(inc_initial_1, inc_initial_v, clk_1, st_1, ch_1)
return sim
def test(self):
""" Check increment operation """
sim = self.bench()
sim.run(quiet=1)
if __name__ == '__main__':
unittest.main()