Reputation: 2506
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?
Upvotes: 6
Views: 2878
Reputation: 5529
I ran into the issue where Mac's no longer support 32bit code.
So I had to build Dockers.
Example of mine.
FROM i386/alpine:latest
COPY ./resources/* /opt/asm68k/
RUN apk add --no-cache wine freetype ncurses && \
mkdir -p /opt/asm68k/bin && \
ln -s /opt/asm68k/asm68k.sh /opt/asm68k/bin/asm68k && \
echo 'export PATH=$PATH:/opt/asm68k/bin' >> /etc/profile && \
ln -s /opt/asm68k/bin/* /usr/local/bin/ && \
echo alias ll='ls -lah' >> /etc/profile.d/aliases.sh && \
wine --version && \
wine /opt/asm68k/asm68k.exe || echo 'done'
WORKDIR "/tmp"
ENTRYPOINT ["wine", "/opt/asm68k/asm68k.exe"]
I also built binutils this way, but it was a pain.
Upvotes: 1
Reputation: 504
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.
Snoopy
Upvotes: 1