|
|
Compilation Instructions
To compile vasm you first have to choose a Makefile
which fits for your host architecture. The following are available:
- Makefile - standard Unix/gcc Makefile
- Makefile.68k - makes AmigaOS/68k executable with vbcc
- Makefile.MOS - makes MorphOS executable with vbcc
- Makefile.OS4 - makes AmigaOS4 executable with vbcc
- Makefile.PUp - makes PowerUp executable with vbcc
- Makefile.WOS - makes WarpOS executable with vbcc
Then select a CPU- and a syntax-module to compile. Do this by
defining CPU and SYNTAX for your Makefile, e.g.
make CPU=m68k SYNTAX=mot
Available CPU modules:
- CPU=6502
- CPU=arm
- CPU=c16x
- CPU=m68k
- CPU=ppc
- CPU=test
- CPU=x86
- CPU=z80
Available Syntax modules:
- SYNTAX=std
- SYNTAX=mot
- SYNTAX=oldstyle
- SYNTAX=test
The Makefile will then generate a vasm-binary called:
vasm<CPU>_<SYNTAX>[_<HOST>]
|
|