Brennan Cain, Hunter Damron, and James Johnson (he doesnt even go here!)
Compiler from the Simple Basic language to the Von Neumann simple machine language.
Navigate to the root of the compiler folder and execute the command
g++ --std=c++11 -o simplec src/main.cpp src/compiler.cpp
The executable can be run using two different configurations for input and output files.
<simple basic file>
is the filename for the file containing the Simple Basic source.
<output file>
is the file the Von Neumann machine language will be saved to.
./simplec <simple basic file>
./simplec <simple basic file> <output file>
This compiler does not save the rem command arguments to the final SML. It can easily be extended by uncommenting the implementation in the compiler.cpp
The compiler documentation is available in the doc directory of the compiler root folder.