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