Changeset 457 for trunk/hal/x86_64
- Timestamp:
- Aug 2, 2018, 11:47:13 AM (6 years ago)
- Location:
- trunk/hal/x86_64
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/Makefile
r444 r457 72 72 drivers/%.h \ 73 73 $(KERNEL)/kernel_config.h \ 74 core/hal_ types.h74 core/hal_kernel_types.h 75 75 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 76 76 … … 80 80 $(HAL)/generic/%.h \ 81 81 $(KERNEL)/kernel_config.h \ 82 core/hal_ types.h82 core/hal_kernel_types.h 83 83 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 84 84 … … 88 88 core/hal_segmentation.h \ 89 89 $(KERNEL)/kernel_config.h \ 90 core/hal_ types.h90 core/hal_kernel_types.h 91 91 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 92 92 … … 96 96 core/hal_segmentation.h \ 97 97 $(KERNEL)/kernel_config.h \ 98 core/hal_ types.h98 core/hal_kernel_types.h 99 99 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 100 100 … … 107 107 core/hal_internal.h \ 108 108 $(KERNEL)/kernel_config.h \ 109 core/hal_ types.h109 core/hal_kernel_types.h 110 110 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 111 111 … … 114 114 core/hal_segmentation.h \ 115 115 $(KERNEL)/kernel_config.h \ 116 core/hal_ types.h116 core/hal_kernel_types.h 117 117 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 118 118 … … 121 121 core/hal_boot.h \ 122 122 $(KERNEL)/kernel_config.h \ 123 core/hal_ types.h123 core/hal_kernel_types.h 124 124 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 125 125 … … 127 127 core/hal_acpi.h \ 128 128 $(KERNEL)/kernel_config.h \ 129 core/hal_ types.h129 core/hal_kernel_types.h 130 130 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 131 131 … … 133 133 core/hal_apic.h \ 134 134 $(KERNEL)/kernel_config.h \ 135 core/hal_ types.h135 core/hal_kernel_types.h 136 136 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 137 137 138 138 $(HAL_ARCH)/build/core/x86_printf.o: core/x86_printf.c \ 139 139 $(KERNEL)/kernel_config.h \ 140 core/hal_ types.h140 core/hal_kernel_types.h 141 141 $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $< 142 142 -
trunk/hal/x86_64/core/hal_acpi.c
r348 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_boot.h> 24 24 #include <hal_acpi.h> -
trunk/hal/x86_64/core/hal_apic.c
r327 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_boot.h> 24 24 #include <hal_register.h> -
trunk/hal/x86_64/core/hal_atomic.c
r234 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_internal.h> 24 24 -
trunk/hal/x86_64/core/hal_context.c
r368 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <memcpy.h> 24 24 #include <thread.h> -
trunk/hal/x86_64/core/hal_drivers.c
r346 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <chdev.h> 24 24 #include <hal_drivers.h> -
trunk/hal/x86_64/core/hal_exception.c
r403 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_irqmask.h> 24 24 #include <hal_exception.h> -
trunk/hal/x86_64/core/hal_gpt.c
r408 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_boot.h> /* XXX */ 24 24 #include <hal_gpt.h> -
trunk/hal/x86_64/core/hal_init.c
r365 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_boot.h> 24 24 #include <hal_multiboot.h> -
trunk/hal/x86_64/core/hal_interrupt.c
r344 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <kernel_config.h> 24 24 #include <thread.h> -
trunk/hal/x86_64/core/hal_irqmask.c
r370 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_internal.h> 24 24 #include <hal_segmentation.h> -
trunk/hal/x86_64/core/hal_ppm.c
r407 r457 21 21 22 22 #include <kernel_config.h> 23 #include <hal_ types.h>23 #include <hal_kernel_types.h> 24 24 #include <hal_ppm.h> 25 25 #include <hal_special.h> -
trunk/hal/x86_64/core/hal_remote.c
r314 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_internal.h> 24 24 -
trunk/hal/x86_64/core/hal_special.c
r371 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_apic.h> 24 24 #include <hal_special.h> -
trunk/hal/x86_64/core/hal_syscall.c
r145 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_syscall.h> 26 26 #include <do_syscall.h> -
trunk/hal/x86_64/core/hal_types.h
r407 r457 1 1 /* 2 * hal_ types.h - common kernel types for x86_642 * hal_kernel_types.h - common kernel types for x86_64 3 3 * 4 4 * Author Alain Greiner (2016) -
trunk/hal/x86_64/core/hal_uspace.c
r407 r457 23 23 */ 24 24 25 #include <hal_ types.h>25 #include <hal_kernel_types.h> 26 26 #include <hal_uspace.h> 27 27 #include <hal_irqmask.h> -
trunk/hal/x86_64/core/x86_printf.c
r242 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <hal_boot.h> 24 24 #include <hal_internal.h> -
trunk/hal/x86_64/drivers/ioc_ata.h
r215 r457 24 24 25 25 #include <chdev.h> 26 #include <hal_ types.h>26 #include <hal_kernel_types.h> 27 27 28 28 void ioc_ata_init(chdev_t *chdev); -
trunk/hal/x86_64/drivers/pic_apic.c
r404 r457 20 20 */ 21 21 22 #include <hal_ types.h>22 #include <hal_kernel_types.h> 23 23 #include <chdev.h> 24 24 #include <pic_apic.h> -
trunk/hal/x86_64/drivers/pic_apic.h
r280 r457 23 23 #define _PIC_APIC_H_ 24 24 25 #include <hal_ types.h>25 #include <hal_kernel_types.h> 26 26 27 27 void pic_apic_init(chdev_t *pic);
Note: See TracChangeset
for help on using the changeset viewer.