chore: update x86_64 crate links to latest version

This commit is contained in:
Axel Lindeberg
2020-06-29 18:27:00 +02:00
parent 4540a2e725
commit ee33868068
8 changed files with 62 additions and 62 deletions

View File

@@ -168,7 +168,7 @@ The functionality of the `isa-debug-exit` device is very simple. When a `value`
Instead of manually invoking the `in` and `out` assembly instructions, we use the abstractions provided by the [`x86_64`] crate. To add a dependency on that crate, we add it to the `dependencies` section in our `Cargo.toml`:
[`x86_64`]: https://docs.rs/x86_64/0.11.0/x86_64/
[`x86_64`]: https://docs.rs/x86_64/0.11.1/x86_64/
```toml
# in Cargo.toml
@@ -179,7 +179,7 @@ x86_64 = "0.11.0"
Now we can use the [`Port`] type provided by the crate to create an `exit_qemu` function:
[`Port`]: https://docs.rs/x86_64/0.11.0/x86_64/instructions/port/struct.Port.html
[`Port`]: https://docs.rs/x86_64/0.11.1/x86_64/instructions/port/struct.Port.html
```rust
// in src/main.rs