mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
7601fb549c
- Rename UP -> PIC. The "up" folder in fact contains the code for managing the Intel 8259 PIC chip - Move amd64/processor.c -> apic/processor.c. The code is not tied to amd64 - Remove platform from "halinit*" files. They already reside in the corresponding folder
16 lines
377 B
CMake
16 lines
377 B
CMake
|
|
list(APPEND HAL_APIC_ASM_SOURCE
|
|
apic/apictrap.S
|
|
apic/tsccal.S)
|
|
|
|
list(APPEND HAL_APIC_SOURCE
|
|
apic/apic.c
|
|
apic/apictimer.c
|
|
apic/halinit.c
|
|
apic/processor.c
|
|
apic/rtctimer.c
|
|
apic/tsc.c)
|
|
|
|
add_asm_files(lib_hal_apic_asm ${HAL_APIC_ASM_SOURCE})
|
|
add_library(lib_hal_apic OBJECT ${HAL_APIC_SOURCE} ${lib_hal_apic_asm})
|
|
add_dependencies(lib_hal_apic asm)
|