diff options
author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-07-03 12:25:27 +0200 |
---|---|---|
committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-07-03 12:25:27 +0200 |
commit | 65f530cd6b38c9d1971314bb14705137623a8f9d (patch) | |
tree | 86206cdd3aa62b26e5b0a43a2c581b93812ad254 | |
parent | 50ba585ba00b2037ddd1c3818b49e8412689e094 (diff) | |
download | qtmips-65f530cd6b38c9d1971314bb14705137623a8f9d.tar.gz qtmips-65f530cd6b38c9d1971314bb14705137623a8f9d.tar.bz2 qtmips-65f530cd6b38c9d1971314bb14705137623a8f9d.zip |
Version updated to 0.7.1
* Debian package updated to version 0.7.1.
* Add option to parse and show symbolic registers names.
* Implemented simple integrated assembler - it is not recommended for advanced users.
* Updated instructions parsing to be usable for integrated assembler.
* Change instruction parsing to allow multiple words pseudo-operations.
* Implemented simple expressions and labels/symbols evaluation.
* Simple highlighter for assembly language added.
* Include simple text editor in QtMips emulator.
* Fix memory leakages which repeat during program operation.
* Externally caused address-space changes (i.e. from peripherals) update memory view.
* Provide option to hide coreview to speedup simulation.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
-rw-r--r-- | debian/changelog | 16 | ||||
-rw-r--r-- | qtmips.spec | 2 | ||||
-rw-r--r-- | qtmips_gui/aboutdialog.cpp | 2 | ||||
-rw-r--r-- | qtmips_gui/main.cpp | 2 |
4 files changed, 19 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 1b12548..ac60fe3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +qtmips (0.7.1) unstable; urgency=medium + + * Debian package updated to version 0.7.1. + * Add option to parse and show symbolic registers names. + * Implemented simple integrated assembler - it is not recommended for advanced users. + * Updated instructions parsing to be usable for integrated assembler. + * Change instruction parsing to allow multiple words pseudo-operations. + * Implemented simple expressions and labels/symbols evaluation. + * Simple highlighter for assembly language added. + * Include simple text editor in QtMips emulator. + * Fix memory leakages which repeat during program operation. + * Externally caused address-space changes (i.e. from peripherals) update memory view. + * Provide option to hide coreview to speedup simulation. + + -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Wed, 03 Jul 2019 12:18:15 +0200 + qtmips (0.7.0) unstable; urgency=medium * Debian package updated to version 0.7.0. diff --git a/qtmips.spec b/qtmips.spec index f42850f..7a312d0 100644 --- a/qtmips.spec +++ b/qtmips.spec @@ -20,7 +20,7 @@ Name: qtmips -Version: 0.7.0 +Version: 0.7.1 Release: 0 Summary: MIPS CPU simulator for education purposes with pipeline and cache visualization License: GPL-2.0-or-later diff --git a/qtmips_gui/aboutdialog.cpp b/qtmips_gui/aboutdialog.cpp index 18d7163..f1f9017 100644 --- a/qtmips_gui/aboutdialog.cpp +++ b/qtmips_gui/aboutdialog.cpp @@ -71,7 +71,7 @@ AboutDialog::AboutDialog(QWidget *parent) hl->addWidget(vbox); QString versionText; - versionText = "Version 0.7.0\n"; + versionText = "Version 0.7.1\n"; vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>")); lbl = new QLabel(versionText); diff --git a/qtmips_gui/main.cpp b/qtmips_gui/main.cpp index 4e01d65..1d92434 100644 --- a/qtmips_gui/main.cpp +++ b/qtmips_gui/main.cpp @@ -40,7 +40,7 @@ int main(int argc, char *argv[]) { QApplication app(argc, argv); app.setApplicationName("qtmips_gui"); - app.setApplicationVersion("0.7.0"); + app.setApplicationVersion("0.7.1"); MainWindow w; w.start(); |