diff options
| author | Fabian Imhof <fabian.imhof@ost.ch> | 2025-03-29 14:47:04 +0000 |
|---|---|---|
| committer | Fabian Imhof <fabian.imhof@ost.ch> | 2025-03-29 14:47:04 +0000 |
| commit | aba154ad01fc0e1e1274f2582b1493e78daa2559 (patch) | |
| tree | 15aad40a97406a76e466191ef7afc5ed4ab10006 /arch/x86_64/CMakeLists.txt | |
| parent | 98be1b722f17e77880e8c0b0f464a9ba31230fc4 (diff) | |
| download | teachos-aba154ad01fc0e1e1274f2582b1493e78daa2559.tar.xz teachos-aba154ad01fc0e1e1274f2582b1493e78daa2559.zip | |
fix gdt segments, improve idt and trial&error for triple fault
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
| -rw-r--r-- | arch/x86_64/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt index 5242f3d..5e87594 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -107,6 +107,14 @@ target_sources("_context" PRIVATE ) #[============================================================================[ +# The Interrupt Handlers +#]============================================================================] + +target_sources("_interrupt_handling" PRIVATE + "src/interrupt_handling/generic_interrupt_handler.cpp" +) + +#[============================================================================[ # The Bootable ISO Image #]============================================================================] |
