コード例 #1
0
ファイル: vivado.py プロジェクト: Martoni/periphondemand
    def __init__(self, parent):
        """ constructor
        """
        Synthesis.__init__(self, parent)

        tool = self.synthesis_toolcommandname
        command = "-version"

        cont = []
        cont = list(os.popen(tool + " " + command))
        self.version = cont[0].split(" ")[1][1:]
        self.base_version = self.version.split(".")[0]
コード例 #2
0
ファイル: vivado.py プロジェクト: Martoni/periphondemand
    def __init__(self, parent):
        """ constructor
        """
        Synthesis.__init__(self, parent)

        tool = self.synthesis_toolcommandname
        command = "-version"

        cont = []
        cont = list(os.popen(tool + " " + command))
        self.version = cont[0].split(" ")[1][1:]
        self.base_version = self.version.split(".")[0]
コード例 #3
0
ファイル: quartus.py プロジェクト: trabucayre/periphondemand
 def __init__(self, parent):
     Synthesis.__init__(self, parent)
コード例 #4
0
ファイル: ise.py プロジェクト: Martoni/periphondemand
 def __init__(self, parent):
     Synthesis.__init__(self, parent)