68k Assembler on OS X Lion

天涯浪子 提交于 2019-12-01 06:06:52

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

I'm in the same situation, and I've found that Easy68k (http://www.easy68k.com/) works very well under wine.

Also, it is possible to set up a full Debian/68k system using Aranym (see https://wiki.debian.org/Aranym/Quick).

I'll be writing something about this on my blog, hope it helps.

Source: studying m68k for college class too.

Cheers,

Snoopy

The GNU assembler (part of binutils) can be built to target the m68k. Run configure with --target=m68k-elf (because COFF output is no longer supported for m68k). You also have the option to install gcc and newlib if you want to write some of the code in C/C++.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!