Skip to content

Commit

Permalink
Updating pythondata-cpu-mor1kx to 5.0.post125
Browse files Browse the repository at this point in the history
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
  • Loading branch information
timvideos-robot authored and Travis CI User committed Apr 9, 2020
1 parent db3cd95 commit 4c14474
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ This Useful for usage with tools like
[LiteX](https://github.com/enjoy-digital/litex.git).

The data files can be found under the Python module `pythondata_cpu_mor1kx`. The
`pythondata_cpu_mor1kx.location` value can be used to find the files on the file system.
`pythondata_cpu_mor1kx.data_location` value can be used to find the files on the file
system.

Example of getting the data file directly;
```python
Expand Down
12 changes: 6 additions & 6 deletions pythondata_cpu_mor1kx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://github.com/openrisc/mor1kx.git"

# Module version
version_str = "5.0.post124"
version_tuple = (5, 0, 124)
version_str = "5.0.post125"
version_tuple = (5, 0, 125)
try:
from packaging.version import Version as V
pversion = V("5.0.post124")
pversion = V("5.0.post125")
except ImportError:
pass

Expand Down Expand Up @@ -37,11 +37,11 @@
"""

# Tool version info
tool_version_str = "0.0.post48"
tool_version_tuple = (0, 0, 48)
tool_version_str = "0.0.post49"
tool_version_tuple = (0, 0, 49)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post48")
ptool_version = V("0.0.post49")
except ImportError:
pass

Expand Down

0 comments on commit 4c14474

Please sign in to comment.