From c9731f604bac4b92cb94886e678ba6813d0ae643 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Sun, 21 Feb 2021 08:47:02 +0000 Subject: [PATCH] ist entry 0 means ist is not used... ment to say ist entry 1. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e6680f..3242ea5 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ typedef union _idt_entry_t ``` ###### IST - Interrupt Stack Table -This interrupt stack table is located inside of the TSS. Bluepill interrupt routines have their own stack, this is the only change done to the TSS. IST entries zero through three are used by windows interrupt routines and entries four through six are used by Bluepill. +This interrupt stack table is located inside of the TSS. Bluepill interrupt routines have their own stack, this is the only change done to the TSS. IST entries one through three are used by windows interrupt routines and entries four through six are used by Bluepill. ```cpp // host page fault interrupt stack...