From 4433c04f94f3c9031236f50b73406fd5d9e27c9b Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Mon, 10 Aug 2020 12:23:03 +0530 Subject: [PATCH] driver file --- src/Main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Main.cpp b/src/Main.cpp index a44db90..1f9c4ff 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -1,10 +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; + std::string asmfile(argv[1]); + parser pars(asmfile); + pars.assemble(); return 0; }