README 479 B

12345678910111213141516171819
  1. To install the ACSE compiler type in the console:
  2. make
  3. To compile some examples (located in the directory ./tests) type:
  4. make tests
  5. In order to use the compiler/assembler/executor at first you have
  6. to export the directory ./bin in your current PATH as follows:
  7. export PATH=`pwd`/bin:$PATH
  8. You can compile and run new Lance programs in this way (suppose you
  9. have saved a Lance program in 'myprog.src'):
  10. acse myprog.src myprog.asm
  11. asm myprog.asm myprog.o
  12. mace myprog.o