Page 3 of 3

Posted: Fri Jun 12, 2009 8:22 am
by Chilly Willy
I use ReSource for the Amiga to disassemble anything 680x0. It's really a great disassembler. Of course, I run it under UAE these days instead of a real Amiga. :D

Posted: Fri Jun 12, 2009 9:02 am
by HardWareMan
Munkyears wrote:A disassembler? I hate using it, but they are quick and dirty although i can only find one that exports to an actual asm file and not to console screens.
Wrong. Just tool for convert binary data to it's ASM equivalent (dc.w xxxx).

Posted: Fri Jun 12, 2009 9:13 am
by TmEE co.(TM)
Munkyears wrote:i can only find one that exports to an actual asm file and not to console screens.
I guess someone needs to type "> yourfile.asm" also at the command line and later on peek into yourfile.asm :)

Posted: Fri Jun 12, 2009 10:48 am
by GManiac
One year ago I wrote quick Sega disasm for Win32.
http://shedevr.org.ru/ghost/segadasm.rar
As for me, it's very useful ;)

Posted: Fri Jun 12, 2009 3:32 pm
by mic_
objdump -b binary -m m68k -D foo.bin > foo.s

Posted: Fri Jun 12, 2009 7:43 pm
by Munkyears
Haha! never new that was available. is that for most disassemblers then? Thanks, will try it out xD

Posted: Sat Jun 13, 2009 5:41 am
by TmEE co.(TM)
that's with all DOS programs that use DOS ints to put stuff on screen.... the > will direct all those screen writes to a file.