Changeset 4bf0926e in mainline for kernel/arch/amd64/src/boot/multiboot2.S
- Timestamp:
- 2016-09-01T22:14:30Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c2d54a
- Parents:
- 8b6aa39
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/boot/multiboot2.S
r8b6aa39 r4bf0926e 253 253 movl multiboot_eax, %edi 254 254 movl multiboot_ebx, %esi 255 callq amd64_pre_main 255 256 #ifdef MEMORY_MODEL_large 257 movabsq $amd64_pre_main, %rax 258 callq *%rax 259 #else 260 callq amd64_pre_main 261 #endif 256 262 257 263 /* Call main_bsp() */ 258 callq main_bsp 264 #ifdef MEMORY_MODEL_large 265 movabsq $main_bsp, %rax 266 callq *%rax 267 #else 268 callq main_bsp 269 #endif 259 270 260 271 /* Not reached */
Note:
See TracChangeset
for help on using the changeset viewer.