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
2003-08-28 10:40:24 +00:00

24 lines
466 B
Python

modules = ('hello1',
'hello2',
'greetings',
'bin2gray',
'hec',
'rs232',
'mux',
'mux2',
'inc',
'fsm',
'queue',
'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()