1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/example/manual/run_all.py

22 lines
427 B
Python
Raw Normal View History

2003-08-04 07:51:14 +00:00
modules = ('hello1',
'hello2',
'greetings',
'bin2gray',
'hec',
'rs232',
'mux',
'mux2',
'inc',
'sparseMemory',
'fifo',
)
for n in modules:
m = __import__(n)
info = "* %s.py *" % m.__name__
print
print '*' * len(info)
print "* %s.py *" % m.__name__
print '*' * len(info)
m.main()