diff options
-rw-r--r-- | src/arch/x86_64.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/x86_64.md b/src/arch/x86_64.md index 575870f..35fd9aa 100644 --- a/src/arch/x86_64.md +++ b/src/arch/x86_64.md @@ -65,6 +65,7 @@ popfd // pop flags (4byte) from stack rdmsr // Read MSR register, effectively does EDX:EAX <- MSR[ECX] wrmsr // Write MSR register, effectively does MSR[ECX] <- EDX:EAX ``` +> See [guest64-msr.S][mkvm-msr] as an example. ## Size directives Explicitly specify size of the operation. @@ -461,3 +462,4 @@ itself. [gas_x86_64]: https://sourceware.org/binutils/docs/as/i386_002dDependent.html [juicebox]: https://github.com/johannst/juicebox-asm [mbr]: https://en.wikipedia.org/wiki/Master_boot_record +[mkvm-msr]: https://github.com/johannst/mini-kvm-rs/blob/main/guest/guest64-msr.S |