Skip to content

Instantly share code, notes, and snippets.

@tattlemuss
Last active August 29, 2015 14:02
Show Gist options
  • Save tattlemuss/3ed133e3c1f1891c8f54 to your computer and use it in GitHub Desktop.
Save tattlemuss/3ed133e3c1f1891c8f54 to your computer and use it in GitHub Desktop.
download and build vasm and vlink
#!/usr/bin/env sh
curl http://sun.hasenbraten.de/vasm/release/vasm.tar.gz > vasm.tar.gz
curl http://sun.hasenbraten.de/vlink/release/vlink.tar.gz > vlink.tar.gz
mkdir vasm
mkdir vlink
tar -zxvf ./vasm.tar.gz # unpacks to "vasm"
tar -zxvf ./vlink.tar.gz # unpacks to "vlink"
cd vasm
make CPU=m68k SYNTAX=mot
cd ..
cd vlink
make CPU=m68k SYNTAX=mot
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment