The Merlin 32 assembler for the Apple II from Brutal Deluxe Software. More information, documentation, etc available at:
http://www.brutaldeluxe.fr/products/crossdevtools/merlin/
- Download the zip file for your platform. For example: merlin32-v1.1.0-macos-powerpc-installer.zip
unzip merlin32-v1.1.0-macos-powerpc-installer.zip
cd merlin32
./run-this-to-install
- Enter your password.
There are 2 different make files.
- GNUmakefile - Used for Mac, Linux & BSD UNIX
- Makefile - Used for Windows with nmake and MSVC
The build process is too different between Windows and the other platforms to be done with the same make file. Using the current make file naming convention allows the builder to use the same workflow regardless of the platform. GNU make on Mac, Linux and BSD UNIX automatically looks for GNUmakefile first and will ignore Makefile if GNUmakefile exists. Likewise, nmake on Windows will ignore GNUmakefile and use Makefile instead.
git clone https://github.com/apple2accumulator/merlin32
cd merlin32/Source
make
sudo make install
This will install it into these locations:
/usr/local/bin/merlin32
/usr/local/share/merlin32/asminc/*.Mac.s
The default install location (PREFIX) is /usr/local. You can change the install location like this. Make sure you specify the PREFIX on both steps.
git clone https://github.com/apple2accumulator/merlin32
cd merlin32/Source
make PREFIX=/opt/merlin32
sudo make PREFIX=/opt/merlin32 install
This would install to:
/opt/merlin32/bin/merlin32
/opt/merlin32/share/merlin32/asminc/*.Mac.s
Then you would have to manually add to your PATH because that bin directory is not normally in the PATH like /usr/local/bin is.
- Start a Visual Studio Command Prompt from the Start Menu.
git clone https://github.com/apple2accumulator/merlin32
cd merlin32/Source
nmake
nmake install
This will install it into C:\Users<You>\Applications\merlin32 and will automatically put the bin directory into the path. You'll have to start a new Command Prompt to see it in the path.
The install copies to these locations:
C:\Users<You>\Applications\merlin32\bin\merlin32.exe
C:\Users<You>\Applications\merlin32\asminc\*.Macs.s
To get it to install into "C:\Program Files" would require a setup application that would be able to do privilege escalation. That is not currently supported. But you could install into a directory like C:\opt because that is not protected like "C:\Program Files". To do that build it like this:
- Start a Visual Studio Command Prompt from the Start Menu.
git clone https://github.com/apple2accumulator/merlin32
cd merlin32/Source
nmake clean
nmake PREFIX=C:\opt\merlin32 install
On Windows, the bin directory is automatically added to the PATH regardless of where it is installed. This is done with the script merlin32\Scripts\addtopath.bat.
The merlin32\Scripts\uninstall.bat script will uninstall it from the standard folder C:\Users\You\Applications\merlin32.
If you installed it to another location, just delete that directory. For example:
rmdir /s C:\opt\merlin32
Invoking Merlin32 should be the same on all platforms.
After running the above install step, merlin32 should be in your PATH.
The location of the macro library files is compiled into the executable so it is optional on the command line. You can run it with or without specifying the macro library directory. So it is backward compatible with the original release.
$ merlin32 ~/git/merlin32/Library skynet.s
$ merlin32 skynet.s
(Will automatically use PREFIX/share/merlin32/asminc)
Merlin32 Setup for Visual Studio: https://marketplace.visualstudio.com/items?itemName=OlivierGuinartMSFT.Merlin32LanguageService
Merlin32 (and cc65) Setup for Xcode https://github.com/jeremysrand/Apple2BuildPipeline