Brian O #1 Posted November 29, 2012 I'm looking for the original Combat disassembly done by Harry Dodgson. I cannot use the definitive disassembly, since it has way too many comment notes. Does this original disassembly exist? If so, anyone know where I can find it? Thanks in advance, B Quote Share this post Link to post Share on other sites
Brian O #2 Posted November 29, 2012 Hello Hello Hello Hello Quote Share this post Link to post Share on other sites
Thomas Jentzsch #3 Posted November 30, 2012 I cannot use the definitive disassembly, since it has way too many comment notes. That sentence makes no sense to me. What's wrong with the comments??? Quote Share this post Link to post Share on other sites
Nukey Shay #4 Posted November 30, 2012 Phase 1: Erase comments Phase 2: ??? Phase 3: PROFIT 1 Quote Share this post Link to post Share on other sites
Brian O #5 Posted November 30, 2012 I could erase the comments, but its a pain. And I don't want to run the risk of accidentally removing code. If I need to go that route I will, but if a less-commented version is available I'd prefer to use that. Thanks B Quote Share this post Link to post Share on other sites
Thomas Jentzsch #6 Posted November 30, 2012 I still don't understand why you want to get rid of the comments? The disassembly was done from scratch and so are the comments. If you remove the comments, you don't get an original or so. Quote Share this post Link to post Share on other sites
Impaler_26 #7 Posted November 30, 2012 Why don't you just disassemble the ROM yourself with DiStella? Quote Share this post Link to post Share on other sites
Nukey Shay #8 Posted November 30, 2012 That's what I'd do. Really well-commented disassemblies can sometimes cause distractions IMO, and I tend to lose focus on specific goals. Raw disassemblies are also useful to try to locate memory to save. Such as merging/sharing data table strings - not really possible if you are only seeing equates and constants rather than their true hex or binary values. 1 Quote Share this post Link to post Share on other sites
Tjoppen #9 Posted November 30, 2012 (edited) I'm looking for the original Combat disassembly done by Harry Dodgson. I cannot use the definitive disassembly, since it has way too many comment notes. I could erase the comments, but its a pain. And I don't want to run the risk of accidentally removing code. Use sed. Something like sed -e "/^;.*/d;s/;.*//" < in.asm > out.asm edit: Here you go: http://pastebin.com/XG9zEQTY Edited November 30, 2012 by Tjoppen 2 Quote Share this post Link to post Share on other sites
Brian O #10 Posted November 30, 2012 Thanks, Tjoppen! Thomas/Nukey — This is for a design project, not a technical project, so the comments are not necessary. The less characters in the code the better. Thanks for all your help/input! -B Quote Share this post Link to post Share on other sites