File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ This Useful for usage with tools like
77[ LiteX] ( https://github.com/enjoy-digital/litex.git ) .
88
99The data files can be found under the Python module ` pythondata_cpu_vexriscv ` . The
10- ` pythondata_cpu_vexriscv.location ` value can be used to find the files on the file system.
10+ ` pythondata_cpu_vexriscv.data_location ` value can be used to find the files on the file
11+ system.
1112
1213Example of getting the data file directly;
1314``` python
Original file line number Diff line number Diff line change 44src = "https://github.com/SpinalHDL/VexRISCV.git"
55
66# Module version
7- version_str = "1.0.1.post313 "
8- version_tuple = (1 , 0 , 1 , 313 )
7+ version_str = "1.0.1.post314 "
8+ version_tuple = (1 , 0 , 1 , 314 )
99try :
1010 from packaging .version import Version as V
11- pversion = V ("1.0.1.post313 " )
11+ pversion = V ("1.0.1.post314 " )
1212except ImportError :
1313 pass
1414
2727"""
2828
2929# Tool version info
30- tool_version_str = "0.0.post48 "
31- tool_version_tuple = (0 , 0 , 48 )
30+ tool_version_str = "0.0.post49 "
31+ tool_version_tuple = (0 , 0 , 49 )
3232try :
3333 from packaging .version import Version as V
34- ptool_version = V ("0.0.post48 " )
34+ ptool_version = V ("0.0.post49 " )
3535except ImportError :
3636 pass
3737
You can’t perform that action at this time.
0 commit comments