>I don't know if its quite what you're looking for, but I >remember an amiga.org user selling a cross-compiler for the >Amiga, where you linked your PC with your Amiga, coded on the >PC but ran code on a real Amiga. Unfortunately, I can't >remember the person's amiga.org username or their website >address. Anyone else remember the device?
I also make cables that let you execute code on the real machine after compiling on PC:
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=320256684628This one interfaces to Atari/C64 through joystick port or SIO port. Another cable on my website uses the floppy connector on the Amiga. Don't have a disassembler for 68K but it will let you compile 68K code directly into an ADF image. Or you can upload an already done ADF file. It also lets you code binaries that run from a fixed location (like ORG $F80000). It does not have a linker so you'll have to include other object modules directly like:
Move.l D0,$DFF180
Move D1,$DFF184
OBJ Reuse.OBJ
Move.b #$FE,$BFE101
Rts