Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 670 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 670 Bytes

Alpha Compiler - Phase 4_5

Authors

Παναγιώτης-Μιχαήλ Αλεξίου csd3665

Κουμάκης Εμμανουήλ csd4281

Ευθύμης Παπαγεωργίου csd4340

Description

  • Everything works as expected (including bonus)

How to build Compiler

cd compiler
make

How to run Compiler

cd compiler
./bin/alphac /path/to/test

How to clean Compiler

cd compiler
make clean

How to build Virtual Machine

cd vm
make

How to run Virtual Machine

cd vm
./bin/alpha

By default vm will open the binary.abc which is generated by the compiler

How to clean Virtual Machine

cd vm
make clean