diff --git a/src/Main.cpp b/src/Main.cpp new file mode 100644 index 0000000..a44db90 --- /dev/null +++ b/src/Main.cpp @@ -0,0 +1,10 @@ +#include "../include/code.hpp" +#include "../include/parser.hpp" +#include "../include/symbol_table.hpp" +#include + +int main(int argc, char const *argv[]) +{ + std::string asmfile; + return 0; +} diff --git a/src/code.cpp b/src/code.cpp new file mode 100644 index 0000000..650389b --- /dev/null +++ b/src/code.cpp @@ -0,0 +1 @@ +#include "../include/code.hpp" \ No newline at end of file diff --git a/src/parser.cpp b/src/parser.cpp new file mode 100644 index 0000000..fa7397a --- /dev/null +++ b/src/parser.cpp @@ -0,0 +1 @@ +#include "../include/parser.hpp" \ No newline at end of file diff --git a/src/symbol_table.cpp b/src/symbol_table.cpp new file mode 100644 index 0000000..c993f6a --- /dev/null +++ b/src/symbol_table.cpp @@ -0,0 +1 @@ +#include "../include/symbol_table.hpp" \ No newline at end of file