68k Assembler on OS X Lion

2019-02-18 12:03发布

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?

3条回答
欢心
2楼-- · 2019-02-18 12:23

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楼-- · 2019-02-18 12:31

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
查看更多
趁早两清
4楼-- · 2019-02-18 12:37

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

查看更多
登录 后发表回答