diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-02 13:59:27 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-02 14:02:13 +0200 |
| commit | b84c4c9d8c90f3d3fd5a60de282278912fad2f04 (patch) | |
| tree | ac283ed18407a8e97bcd14b2cfca3da74f60547b /arch/x86_64/CMakeLists.txt | |
| parent | d0c532af74d8d486d734904fd330d5dae7f49754 (diff) | |
| download | teachos-b84c4c9d8c90f3d3fd5a60de282278912fad2f04.tar.xz teachos-b84c4c9d8c90f3d3fd5a60de282278912fad2f04.zip | |
x86_64/devices: implement ISA bus stub
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
| -rw-r--r-- | arch/x86_64/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt index 4427e4c..21dceef 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -15,6 +15,7 @@ target_sources("x86_64" PRIVATE "kapi/boot_modules.cpp" "kapi/cio.cpp" "kapi/cpu.cpp" + "kapi/devices.cpp" "kapi/interrupts.cpp" "kapi/memory.cpp" "kapi/system.cpp" @@ -24,6 +25,9 @@ target_sources("x86_64" PRIVATE "src/cpu/interrupts.cpp" "src/cpu/interrupt_stubs.S" + # Bus Initialization + "src/bus/isa.cpp" + # Low-level bootstrap "src/boot/boot32.S" "src/boot/entry64.s" |
