Skip to content

Commit fa6330f

Browse files
Merge #81
81: Adds an extra '-' to an instruction r=adamgreig a=martinomburajr This instruction does not work `cargo objdump --bin app -- -d -no-show-raw-insn` Instead I had to add an extra '-' at the start of `-no-show-raw-insn` `rustc 1.58.0-nightly` ![image](https://user-images.githubusercontent.com/8682597/159166255-308d9653-7a47-4e59-ab31-79738ce31eb2.png) Co-authored-by: Martin Ombura Jr <martin.omburajr@gmail.com>
2 parents 7d0e989 + 4426402 commit fa6330f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memory-layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Now let's inspect the output binary to confirm the memory layout looks the way w
205205
(this requires [`cargo-binutils`](https://github.com/rust-embedded/cargo-binutils#readme)):
206206

207207
``` console
208-
$ cargo objdump --bin app -- -d -no-show-raw-insn
208+
$ cargo objdump --bin app -- -d --no-show-raw-insn
209209
```
210210

211211
``` text

0 commit comments

Comments
 (0)