From 06d4ee4ef5883369c825404fc17648a74a5caf93 Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Tue, 18 Aug 2020 21:31:56 +0530 Subject: [PATCH] driver program --- Main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Main.cpp diff --git a/Main.cpp b/Main.cpp new file mode 100644 index 0000000..07e1619 --- /dev/null +++ b/Main.cpp @@ -0,0 +1,9 @@ +#include "code_writer.hpp" +#include + +int main(int argc, char const *argv[]) +{ + code_writer toassembly(argv[1]); + toassembly.write_assembly(); + return 0; +}