68k Assembler on OS X Lion

偶尔善良 提交于 2019-12-01 04:12:04

问题


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?


回答1:


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



回答2:


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




回答3:


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++.



来源:https://stackoverflow.com/questions/10218442/68k-assembler-on-os-x-lion

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