Skip to content

Releases: AlexCouch/lux-lang

Lux VM w/ Lux ASM Prototype 0.0.1

29 Sep 02:41
Compare
Choose a tag to compare
Pre-release

The Lux Virtual Machine and Lux Assembly w/ Assembler prototypes first release. This is a test release and is not meant to act as an official first release. This is so that others may stay up to date with the current prototype's builds and submit feedback.

To run it, place the attached jar file anywhere you wish to run lasm files. Then run the following command:

java -jar lux-vm-1.0.jar -f ... -o ...

After -f put the name of your *.lasm file (only one for now) and after -o put the name of the executable output *.lexe that will be used by the lux-vm. After this has been generated, you may use the *.lexe after the -f and omit the -o argument

java -jar lux-vm-1.0.jar -f myapp.lexe

This will make it so you don't have to assemble the lasm file again.