Changeset d47f0e1 in mainline for arch/ia32/src/boot/boot.S
- Timestamp:
- 2005-06-05T15:18:24Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3f41b6
- Parents:
- d1a184f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/boot/boot.S
rd1a184f rd47f0e1 63 63 lidt idtr 64 64 65 call map_kernel 66 67 movl $_hardcoded_ktext_size, hardcoded_ktext_size 68 movl $_hardcoded_kdata_size, hardcoded_kdata_size 69 movl $_hardcoded_load_address, hardcoded_load_address 70 71 call main_bsp # never returns 72 73 cli 74 hlt 75 76 .global map_kernel 77 map_kernel: 65 78 # 66 79 # Here we setup mapping for both the unmapped and mapped sections of the kernel. … … 84 97 orl $(1<<31), %ebx 85 98 movl %ebx, %cr0 99 ret 86 100 87 movl $_hardcoded_ktext_size, hardcoded_ktext_size88 movl $_hardcoded_kdata_size, hardcoded_kdata_size89 movl $_hardcoded_load_address, hardcoded_load_address90 91 call main_bsp # never returns92 93 cli94 hlt95 101 96 102 .section K_DATA_START
Note:
See TracChangeset
for help on using the changeset viewer.