fomu-workshop/bin/litex_read_verilog
Sean Cross b1c2b36cb1 initial commit
Signed-off-by: Sean Cross <sean@xobs.io>
2019-06-19 09:51:22 -07:00

14 lines
421 B
Python
Executable file

#!/usr/bin/env python3
import sys
import os
# This script lives in the "bin" directory, but uses a helper script in the parent
# directory. Obtain the current path so we can get the absolute parent path.
script_path = os.path.dirname(os.path.realpath(
__file__)) + os.path.sep + os.path.pardir + os.path.sep
sys.path.insert(0, script_path)
import lxbuildenv
from litex.tools.litex_read_verilog import main
main()