Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

68k Assembler on OS X Lion

I need to do some programming stuff in assembler for the 68k for my college class. I'm looking for a programm to do it on os x lion. I found easy68k which is running in wine, but I have the feeling that it's not working porperly. Any guess?

like image 862
arnoapp Avatar asked Apr 18 '12 21:04

arnoapp


Video Answer


1 Answers

Vasm is an assembler that can be built to target the 68k and works under OS X. Check the compilation notes, but basically the command to build it from source to target the 68k, using motorola syntax is:

make CPU=m68k SYNTAX=mot
like image 141
sjs Avatar answered Sep 26 '22 00:09

sjs