mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
10 lines
171 B
Python
10 lines
171 B
Python
import myhdl
|
|
from myhdl import *
|
|
|
|
from test_longdiv import test_longdiv
|
|
|
|
if __name__ == '__main__':
|
|
sim = Simulation(test_longdiv(nrvectors=2**16))
|
|
sim.run()
|
|
|