Changeset a0d9abcd in mainline for kernel/arch/ia32/src/boot/multiboot.S
- Timestamp:
- 2016-05-05T13:21:25Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4928165
- Parents:
- 57c2a87
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/boot/multiboot.S
r57c2a87 ra0d9abcd 177 177 178 178 floop_pse: 179 movl $( (1 << 7) | (1 << 1) | (1 << 0)), %eax179 movl $(PDE_4M | PDE_RW | PDE_P), %eax 180 180 orl %ebx, %eax 181 181 /* Mapping 0x00000000 + %ecx * 4M => 0x00000000 + %ecx * 4M */ … … 243 243 244 244 floop_pt: 245 movl $( (1 << 1) | (1 << 0)), %eax245 movl $(PTE_RW | PTE_P), %eax 246 246 orl %ebx, %eax 247 247 movl %eax, (%esi, %ecx, 4) … … 260 260 261 261 floop: 262 movl $( (1 << 1) | (1 << 0)), %eax262 movl $(PDE_RW | PDE_P), %eax 263 263 orl %ebx, %eax 264 264
Note:
See TracChangeset
for help on using the changeset viewer.