aboutsummaryrefslogtreecommitdiff
path: root/qtmips_asm
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-07-17 18:02:32 +0200
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-07-17 18:02:32 +0200
commit1d989de07fde1e5bef27336ede1497c88fa9249a (patch)
tree9b940f2b478520f13a204b67e2da861a72d1c0dc /qtmips_asm
parent54ac86405049364df763e8ce002cf7aed4b69bed (diff)
downloadqtmips-1d989de07fde1e5bef27336ede1497c88fa9249a.tar.gz
qtmips-1d989de07fde1e5bef27336ede1497c88fa9249a.tar.bz2
qtmips-1d989de07fde1e5bef27336ede1497c88fa9249a.zip
Implemented message window to report compilation errors.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_asm')
-rw-r--r--qtmips_asm/messagetype.h51
-rw-r--r--qtmips_asm/qtmips_asm.pro3
2 files changed, 53 insertions, 1 deletions
diff --git a/qtmips_asm/messagetype.h b/qtmips_asm/messagetype.h
new file mode 100644
index 0000000..a3a1c49
--- /dev/null
+++ b/qtmips_asm/messagetype.h
@@ -0,0 +1,51 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*******************************************************************************
+ * QtMips - MIPS 32-bit Architecture Subset Simulator
+ *
+ * Implemented to support following courses:
+ *
+ * B35APO - Computer Architectures
+ * https://cw.fel.cvut.cz/wiki/courses/b35apo
+ *
+ * B4M35PAP - Advanced Computer Architectures
+ * https://cw.fel.cvut.cz/wiki/courses/b4m35pap/start
+ *
+ * Copyright (c) 2017-2019 Karel Koci<cynerd@email.cz>
+ * Copyright (c) 2019 Pavel Pisa <pisa@cmp.felk.cvut.cz>
+ *
+ * Faculty of Electrical Engineering (http://www.fel.cvut.cz)
+ * Czech Technical University (http://www.cvut.cz/)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ******************************************************************************/
+
+#ifndef MESSAGETYPE_H
+#define MESSAGETYPE_H
+
+namespace messagetype {
+
+enum Type {
+ START,
+ FINISH,
+ INFO,
+ WARNING,
+ ERROR,
+};
+
+}
+
+#endif /*MESSAGETYPE*/
diff --git a/qtmips_asm/qtmips_asm.pro b/qtmips_asm/qtmips_asm.pro
index 20b988f..d096961 100644
--- a/qtmips_asm/qtmips_asm.pro
+++ b/qtmips_asm/qtmips_asm.pro
@@ -17,4 +17,5 @@ SOURCES += \
fixmatheval.cpp
HEADERS += \
- fixmatheval.h
+ fixmatheval.h \
+ messagetype.h