From 2f2e5b43d2985abd504ecd5672ce783bef904f2f Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Mon, 17 Jan 2022 12:22:30 +0000 Subject: preparing for multitasking --- kc/core/exceptions.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'kc/core/exceptions.h') diff --git a/kc/core/exceptions.h b/kc/core/exceptions.h index 5d22284..11696d5 100644 --- a/kc/core/exceptions.h +++ b/kc/core/exceptions.h @@ -1,7 +1,10 @@ #pragma once extern void page_fault_isr(void); +extern void general_protection_isr(void); +#define GENERAL_PROTECTION_VECTOR 0xd #define PAGE_FAULT_VECTOR 0xe void exceptions_init(void); + -- cgit v1.3.1-1-g115d