File tree 2 files changed +8
-7
lines changed
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
7
7
[ LiteX] ( https://github.com/enjoy-digital/litex.git ) .
8
8
9
9
The 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.
11
12
12
13
Example of getting the data file directly;
13
14
``` python
Original file line number Diff line number Diff line change 4
4
src = "https://github.com/SpinalHDL/VexRISCV.git"
5
5
6
6
# 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 )
9
9
try :
10
10
from packaging .version import Version as V
11
- pversion = V ("1.0.1.post313 " )
11
+ pversion = V ("1.0.1.post314 " )
12
12
except ImportError :
13
13
pass
14
14
27
27
"""
28
28
29
29
# 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 )
32
32
try :
33
33
from packaging .version import Version as V
34
- ptool_version = V ("0.0.post48 " )
34
+ ptool_version = V ("0.0.post49 " )
35
35
except ImportError :
36
36
pass
37
37
You can’t perform that action at this time.
0 commit comments