From a5be36d0cf247b6e6736d93e1cbcb9ad95da18a9 Mon Sep 17 00:00:00 2001 From: hanyujie2002 Date: Sat, 13 Apr 2024 09:12:25 +0800 Subject: [PATCH] Document: assign7-kvm-vmm: fix typo Signed-off-by: hanyujie2002 --- Documentation/teaching/so2/assign7-kvm-vmm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/teaching/so2/assign7-kvm-vmm.rst b/Documentation/teaching/so2/assign7-kvm-vmm.rst index 3eb0b20c1ceb30..fbacd679dc3a76 100644 --- a/Documentation/teaching/so2/assign7-kvm-vmm.rst +++ b/Documentation/teaching/so2/assign7-kvm-vmm.rst @@ -115,7 +115,7 @@ most programs nowdays need 64 bits addresses, and such we will need to switch to In ``vcpu.h``, you may found helpful macros such as CR0_PE, CR0_MP, CR0_ET, etc. -Since we will running a more complex program, we will also create a small stack for our program +Since we will run a more complex program, we will also create a small stack for our program ``regs.rsp = 1 << 20;``. Don't forget to set the RIP and RFLAGS registers. Running