Phasor 3.1.1
Stack VM based Programming Language
Loading...
Searching...
No Matches
Assembler_main.cpp
Go to the documentation of this file.
2#include <nativeerror.h>
3
4int main(int argc, char *argv[])
5{
6 try
7 {
8 Phasor::Assembler assemble(argc, argv);
9 return assemble.run();
10 }
11 catch (const std::exception &e)
12 {
13 error(e.what());
14 return 1;
15 }
16
17 return 0;
18}
int main()
Definition LSP_main.cpp:121
CLI wrapper for assembling Phasor binaries.
Definition Assembler.hpp:14
#define error(msg)
Definition nativeerror.h:11