layout boot-stage framework for aa64
[lunaix-os.git] / lunaix-os / arch / aarch64 / boot / init.h
1 #ifndef __LUNAIX_AA64_INIT_H
2 #define __LUNAIX_AA64_INIT_H
3
4 #include <lunaix/types.h>
5 #include <lunaix/generic/bootmem.h>
6
7 #define boot_text __attribute__((section(".boot.text")))
8 #define boot_data __attribute__((section(".boot.data")))
9 #define boot_bss  __attribute__((section(".boot.bss")))
10
11 ptr_t
12 kremap();
13
14 #endif /* __LUNAIX_AA64_INIT_H */