Skip to content

Commit 4c14474

Browse files
timvideos-robotTravis CI User
authored and
Travis CI User
committed
Updating pythondata-cpu-mor1kx to 5.0.post125
Updated data to v5.0-76-g06e2e46 based on 06e2e46 from https://github.com/openrisc/mor1kx.git. > commit 06e2e46 > Author: JaewonHur <[email protected]> > Date: Mon Dec 23 01:23:20 2019 +0900 > > Fix mor1kx_decode to accept valid l.fl1 (l.ff1) instructions (#110) > > * Fix mor1kx_decode to only accept valid l.fl1 and l.ff1 instructions > > Both l.fl1 and l.ff1 have bit 9 set in the insruction as port of their op codes, > mor1kx_decode does not currently properly check this > Updated using 0.0.post49 from https://github.com/litex-hub/litex-data-auto
1 parent db3cd95 commit 4c14474

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ This Useful for usage with tools like
77
[LiteX](https://github.com/enjoy-digital/litex.git).
88

99
The data files can be found under the Python module `pythondata_cpu_mor1kx`. The
10-
`pythondata_cpu_mor1kx.location` value can be used to find the files on the file system.
10+
`pythondata_cpu_mor1kx.data_location` value can be used to find the files on the file
11+
system.
1112

1213
Example of getting the data file directly;
1314
```python

pythondata_cpu_mor1kx/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
src = "https://github.com/openrisc/mor1kx.git"
55

66
# Module version
7-
version_str = "5.0.post124"
8-
version_tuple = (5, 0, 124)
7+
version_str = "5.0.post125"
8+
version_tuple = (5, 0, 125)
99
try:
1010
from packaging.version import Version as V
11-
pversion = V("5.0.post124")
11+
pversion = V("5.0.post125")
1212
except ImportError:
1313
pass
1414

@@ -37,11 +37,11 @@
3737
"""
3838

3939
# 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)
4242
try:
4343
from packaging.version import Version as V
44-
ptool_version = V("0.0.post48")
44+
ptool_version = V("0.0.post49")
4545
except ImportError:
4646
pass
4747

0 commit comments

Comments
 (0)