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_lm32 ` . The
10
- ` pythondata_cpu_lm32.location ` value can be used to find the files on the file system.
10
+ ` pythondata_cpu_lm32.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/m-labs/lm32.git"
5
5
6
6
# Module version
7
- version_str = "0.0.post105 "
8
- version_tuple = (0 , 0 , 105 )
7
+ version_str = "0.0.post106 "
8
+ version_tuple = (0 , 0 , 106 )
9
9
try :
10
10
from packaging .version import Version as V
11
- pversion = V ("0.0.post105 " )
11
+ pversion = V ("0.0.post106 " )
12
12
except ImportError :
13
13
pass
14
14
37
37
"""
38
38
39
39
# Tool version info
40
- tool_version_str = "0.0.post48 "
41
- tool_version_tuple = (0 , 0 , 48 )
40
+ tool_version_str = "0.0.post49 "
41
+ tool_version_tuple = (0 , 0 , 49 )
42
42
try :
43
43
from packaging .version import Version as V
44
- ptool_version = V ("0.0.post48 " )
44
+ ptool_version = V ("0.0.post49 " )
45
45
except ImportError :
46
46
pass
47
47
You can’t perform that action at this time.
0 commit comments