initial commit

Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
2019-05-22 11:33:32 +08:00
parent 57c6bfd770
commit dd14bb4d29
16 changed files with 1016 additions and 1 deletions

14
bin/litex_server Executable file
View File

@ -0,0 +1,14 @@
#!/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_server import main
main()