blob: a1edcaaaafc81b51b19ad07b963f8c047c80dde3 (
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
|
QT -= gui
TARGET = qtmips_machine
CONFIG += c++11
TEMPLATE = lib
LIBS += -lelf
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_CXXFLAGS += -ggdb
DEFINES += QTMIPS_MACHINE_LIBRARY
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
qtmipsmachine.cpp \
qtmipsexception.cpp \
core.cpp \
memory.cpp \
instruction.cpp \
registers.cpp \
programloader.cpp \
cache.cpp \
alu.cpp \
machineconfig.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 \
cache.h \
alu.h \
machineconfig.h
|