From 4c144744068865eb336bb9407c1c0ef49de9bc18 Mon Sep 17 00:00:00 2001 From: LiteX Date: Thu, 9 Apr 2020 05:33:33 +0000 Subject: [PATCH] Updating pythondata-cpu-mor1kx to 5.0.post125 Updated data to v5.0-76-g06e2e46 based on 06e2e46afbad62572c31bde88e8f2424e23ecda2 from https://github.com/openrisc/mor1kx.git. > commit 06e2e46afbad62572c31bde88e8f2424e23ecda2 > Author: JaewonHur <57657645+JaewonHur@users.noreply.github.com> > 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 --- README.md | 3 ++- pythondata_cpu_mor1kx/__init__.py | 12 ++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9044e7a..22fc4c8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pythondata_cpu_mor1kx/__init__.py b/pythondata_cpu_mor1kx/__init__.py index 779ff89..42d1f7f 100644 --- a/pythondata_cpu_mor1kx/__init__.py +++ b/pythondata_cpu_mor1kx/__init__.py @@ -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 @@ -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