microwatt.mdwn: Fix section on disassembly.
authorAndrey Miroshnikov <andrey@technepisteme.xyz>
Tue, 15 Aug 2023 09:53:05 +0000 (09:53 +0000)
committerAndrey Miroshnikov <andrey@technepisteme.xyz>
Tue, 15 Aug 2023 09:53:05 +0000 (09:53 +0000)
HDL_workflow/microwatt.mdwn

index fa0d35183c99119fc5f646318623bb6615f97af0..c4eb1e8461dc4083c368f7fd4348a8c64e010866 100644 (file)
@@ -139,9 +139,12 @@ begin):
 `-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.