Objdump: Difference between revisions

From dreamcast.wiki
Jump to navigation Jump to search
(Created page with "== Random Snippets == * using Objdump to disassemble part of a file, showing how to change the start and stop offsets and also changing from what address we are basing this on...")
 
No edit summary
 
Line 1: Line 1:
== Random Snippets ==
== Random Snippets ==
* using Objdump to disassemble part of a file, showing how to change the start and stop offsets and also changing from what address we are basing this on
* using Objdump to disassemble part of a file, showing how to change the start and stop offsets and also changing from what address we are basing this on
<code>sh-elf-objdump -D -b binary -m sh4 -EL --adjust-vma=0x8c008000 --start-address=0x8c00b800 --stop-address=0x8c00b830  IP.BIN</code>
<syntaxhighlight lang="bash">sh-elf-objdump -D -b binary -m sh4 -EL --adjust-vma=0x8c008000 --start-address=0x8c00b800 --stop-address=0x8c00b830  IP.BIN</syntaxhighlight>

Latest revision as of 13:16, 30 May 2020

Random Snippets

  • using Objdump to disassemble part of a file, showing how to change the start and stop offsets and also changing from what address we are basing this on
sh-elf-objdump -D -b binary -m sh4 -EL --adjust-vma=0x8c008000 --start-address=0x8c00b800 --stop-address=0x8c00b830  IP.BIN