blob: 02511df81d01090fc637b8aae163c18d9d6646b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
QT += core gui widgets
TARGET = qtmips_gui
CONFIG += c++11
TEMPLATE = app
LIBS += -L$$OUT_PWD/../qtmips_osemu/ -lqtmips_osemu
LIBS += -L$$OUT_PWD/../qtmips_machine/ -lqtmips_machine -lelf
DOLAR=$
unix: LIBS += \
-Wl,-rpath,\'$${DOLAR}$${DOLAR}ORIGIN/../lib\' \
# --enable-new-dtags \
INCLUDEPATH += $$PWD/../qtmips_machine $$PWD/../qtmips_osemu
DEPENDPATH += $$PWD/../qtmips_machine $$PWD/../qtmips_osemu
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_CXXFLAGS_DEBUG += -ggdb
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
main.cpp \
mainwindow.cpp \
newdialog.cpp \
coreview.cpp \
registersdock.cpp \
programdock.cpp \
memorydock.cpp \
coreview/programcounter.cpp \
coreview/multiplexer.cpp \
coreview/connection.cpp \
coreview/latch.cpp \
coreview/alu.cpp \
coreview/memory.cpp \
coreview/instructionview.cpp \
coreview/registers.cpp \
coreview/adder.cpp \
coreview/constant.cpp \
coreview/junction.cpp \
coreview/logicblock.cpp \
coreview/and.cpp \
statictable.cpp \
cacheview.cpp \
cachedock.cpp \
graphicsview.cpp \
coreview/value.cpp \
memorymodel.cpp \
memorytableview.cpp \
hexlineedit.cpp \
programmodel.cpp \
programtableview.cpp \
aboutdialog.cpp \
peripheralsdock.cpp \
terminaldock.cpp \
peripheralsview.cpp
HEADERS += \
mainwindow.h \
newdialog.h \
coreview.h \
registersdock.h \
programdock.h \
memorydock.h \
coreview/programcounter.h \
coreview/multiplexer.h \
coreview/connection.h \
coreview/latch.h \
coreview/alu.h \
coreview/memory.h \
coreview/instructionview.h \
coreview/registers.h \
coreview/adder.h \
coreview/constant.h \
coreview/junction.h \
coreview/logicblock.h \
coreview/and.h \
statictable.h \
cacheview.h \
cachedock.h \
graphicsview.h \
coreview/value.h \
memorymodel.h \
memorytableview.h \
hexlineedit.h \
programmodel.h \
programtableview.h \
aboutdialog.h \
peripheralsdock.h \
terminaldock.h \
peripheralsview.h
FORMS += \
NewDialog.ui \
NewDialogCache.ui \
MainWindow.ui \
peripheralsview.ui
RESOURCES += \
icons.qrc
|