Sem descrição

Andrea Gussoni a2fc2ec943 fixed an error that prevented the compilation of the regression test suite há 8 anos atrás
acse 5410b7344f Initialized repo with the original files of acse há 8 anos atrás
assembler 5410b7344f Initialized repo with the original files of acse há 8 anos atrás
mace 5410b7344f Initialized repo with the original files of acse há 8 anos atrás
tests a2fc2ec943 fixed an error that prevented the compilation of the regression test suite há 8 anos atrás
.gitignore 5410b7344f Initialized repo with the original files of acse há 8 anos atrás
Makefile 5410b7344f Initialized repo with the original files of acse há 8 anos atrás
README 5410b7344f Initialized repo with the original files of acse há 8 anos atrás
VERSION 5410b7344f Initialized repo with the original files of acse há 8 anos atrás

README

To install the ACSE compiler type in the console:
make

To compile some examples (located in the directory ./tests) type:
make tests


In order to use the compiler/assembler/executor at first you have
to export the directory ./bin in your current PATH as follows:

export PATH=`pwd`/bin:$PATH


You can compile and run new Lance programs in this way (suppose you
have saved a Lance program in 'myprog.src'):

acse myprog.src myprog.asm
asm myprog.asm myprog.o
mace myprog.o