blob: 66cb37cf0b08df6d5fb476f2acf2eb26cb280089 (
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
|
QT -= gui
TARGET = qtmips_machine
CONFIG += c++11
TEMPLATE = lib
LIBS += -lelf
QMAKE_CXXFLAGS += -std=c++0x
DEFINES += QTMIPS_MACHINE_LIBRARY
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
qtmipsmachine.cpp \
qtmipsexception.cpp \
core.cpp \
memory.cpp \
instruction.cpp \
registers.cpp \
programloader.cpp \
programmemory.cpp \
instructions/arithmetic.cpp \
instructions/loadstore.cpp \
instructions/shift.cpp \
instructions/nop.cpp \
instructions/jumpbranch.cpp \
utils.cpp \
cache.cpp
HEADERS += \
qtmipsmachine.h \
qtmipsexception.h \
core.h \
memory.h \
instruction.h \
registers.h \
programloader.h \
programmemory.h \
instructions/arithmetic.h \
instructions/loadstore.h \
instructions/shift.h \
instructions/nop.h \
instructions/jumpbranch.h \
utils.h \
cache.h
|