| 11 | | The boot code and the kernel code are two separated compilation units, but some functions are used by both the boot code and the kernel code: |
| 12 | | * They are used by the boot-loader in the ''static'' phase, to build the page tables and initialize the schedulers and the peripherals. |
| 13 | | * They are used by the kernel in the ''dynamic'' phase, to handle events such as interrupts, exceptions and syscalls. |
| 14 | | |
| 15 | | === [wiki:kernel_cp0 CP0 registers access functions] === |
| 16 | | |
| 17 | | === [wiki:kernel_cp2 CP2 registers access functions] === |
| 18 | | |
| 19 | | === [wiki:kernel_paddr Physical addressing functions] === |
| 20 | | |
| 21 | | === [wiki:kernel_locks Locks access functions] === |
| 22 | | |
| 23 | | === [wiki:kernel_tty0 TTY0 access functions] === |
| 24 | | |
| 25 | | === [wiki:kernel_context Task context access functions] === |
| 26 | | |
| 27 | | === [wiki:kernel_mapping Mapping access functions] === |
| 28 | | |
| 29 | | === [wiki:kernel_pmem Physical memory allocators] === |
| 30 | | |
| 31 | | === [wiki:kernel_vmem Virtual to physical address translation] === |
| 32 | | |
| 33 | | === [wiki:kernel_utils Miscelaneous kernel functions] === |
| 34 | | |
| 35 | | |
| 36 | | == __Y) Boot-loader functions__ == |
| | 11 | == __Y) [wiki:boo_loader Boot-loader]__ == |