-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFFAssembler.pro
64 lines (59 loc) · 2.07 KB
/
FFAssembler.pro
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
QT += core
QT -= gui
CONFIG += c++11
TARGET = ff
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += Source/main.cpp \
Source/commandhandler.cpp \
Source/ffassembler.cpp \
Source/PassOne/passone.cpp \
Source/Instruction/instruction.cpp \
Source/Instruction/instructionset.cpp \
Source/SICXESearch/sicxesearch.cpp \
Source/SICXESearch/sicxesearchresult.cpp \
Source/globalutility.cpp \
Source/Table/symboltable.cpp \
Source/Table/tablehandler.cpp \
Source/PassTwo/passtwo.cpp \
Source/PassTwo/sicgencodewithorigin.cpp \
Source/PassTwo/sicgencodepure.cpp \
Source/Table/symboltablewithbit.cpp \
Source/Instruction/instructionformat1.cpp \
Source/Instruction/instructionformat2.cpp \
Source/Instruction/instructionformat4.cpp \
Source/Instruction/instructionformat3.cpp \
Source/Instruction/variable.cpp \
Source/Instruction/assemblydirective.cpp \
Source/Exception/exception.cpp \
Source/Exception/syntaxexception.cpp \
Source/PassTwo/sicxegencodewithorigin.cpp \
Source/Table/registertable.cpp \
Source/PassTwo/sicxegencodepure.cpp
HEADERS += \
Source/commandhandler.h \
Source/ffassembler.h \
Source/PassOne/passone.h \
Source/Instruction/instruction.h \
Source/Instruction/instructionset.h \
Source/SICXESearch/sicxesearch.h \
Source/SICXESearch/sicxesearchresult.h \
Source/globalutility.h \
Source/Table/symboltable.h \
Source/Table/tablehandler.h \
Source/PassTwo/passtwo.h \
Source/PassTwo/sicgencodewithorigin.h \
Source/PassTwo/sicgencodepure.h \
Source/Table/symboltablewithbit.h \
Source/Instruction/instructionformat1.h \
Source/Instruction/instructionformat2.h \
Source/Instruction/instructionformat4.h \
Source/Instruction/instructionformat3.h \
Source/Instruction/variable.h \
Source/Instruction/assemblydirective.h \
Source/Exception/exception.h \
Source/Exception/syntaxexception.h \
Source/PassTwo/sicxegencodewithorigin.h \
Source/Table/registertable.h \
Source/PassTwo/sicxegencodepure.h