From f64865fe44bfe3040bb2225df396f6e2c2a5ec17 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Thu, 18 Feb 2021 00:28:14 +0000 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f6d437..20890a4 100644 --- a/README.md +++ b/README.md @@ -132,8 +132,8 @@ vcpu->tss.interrupt_stack_table[idt::ist_idx::de] = #### IDT - Interrupt Descriptor Table The host IDT is 1:1 to the guest IDT except for three interrupt handlers, #PF, #DE, and #GP. These three different interrupt handlers all route to the same SEH handler function -which just changes RIP to the catch block of whatever try/except the exception happened in. This allows for page faults, general protection faults and division errors to not be handled -by guest controlled interrupt handlers. +which just changes RIP to the catch block of whatever try/except the exception happened in. This allows for page faults, general protection faults and division errors to be handled +by host controlled interrupt handlers. ```cpp // setup IDT for host....