`-h` shows just the section headers, `-x` shows all headers.
And to view the disassembly (great for learning about the PowerISA instructions,
-and for associating the binary hex with actual instructions):
+and for associating the binary hex with actual instructions), you can view the
+automatically generated `hello_world.as` file.
- (microwatt):$ powerpc64le-linux-gnu-objdump -d hello_world.elf
+Command to generate the disassembly:
+
+ (microwatt):$ powerpc64le-linux-gnu-objdump -D hello_world.elf
For more information about `objdump` (common utility, not just for PowerISA),
see the manual pages.