From 93994df022d60fbe3f70bc11743224cbdba1f6d6 Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Sat, 8 Aug 2020 11:55:18 +0530 Subject: [PATCH] Source files added --- src/Main.cpp | 10 ++++++++++ src/code.cpp | 1 + src/parser.cpp | 1 + src/symbol_table.cpp | 1 + 4 files changed, 13 insertions(+) create mode 100644 src/Main.cpp create mode 100644 src/code.cpp create mode 100644 src/parser.cpp create mode 100644 src/symbol_table.cpp 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