URL
https://opencores.org/ocsvn/tv80/tv80/trunk
Subversion Repositories tv80
[/] [tv80/] [branches/] [s80_env_devel/] [scripts/] [run] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
#!/usr/bin/env pythonimport sys, ostestname = sys.argv[1]simulator = "cver"filelist = " -f env/tb.vf"testdef = " +incdir+env -l logs/%s.log +define+DUMPFILE_NAME=\\\"logs/%s.dump\\\" +define+PROGRAM_FILE=\\\"tests/%s.vmem\\\"" % (testname, testname, testname)os.chdir ("tests")os.system ("make %s.vmem" % testname)os.chdir ("..")command = simulator + filelist + testdefprint "command:",commandos.system (command)
Go to most recent revision | Compare with Previous | Blame | View Log
