Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/boot/multiboot.S

    r811770c r3b0f1b9a  
    168168       
    169169        movl %cr4, %eax
    170         orl $CR4_PAE, %eax
     170        btsl $5, %eax
    171171        movl %eax, %cr4
    172172       
     
    176176       
    177177        /* Enable long mode */
    178         movl $AMD_MSR_EFER, %ecx
     178        movl $EFER_MSR_NUM, %ecx
    179179        rdmsr                     /* read EFER */
    180         orl $AMD_LME, %eax        /* set LME = 1 */
     180        btsl $AMD_LME_FLAG, %eax  /* set LME = 1 */
    181181        wrmsr
    182182       
    183183        /* Enable paging to activate long mode (set CR0.PG = 1) */
    184184        movl %cr0, %eax
    185         orl $CR0_PG, %eax
     185        btsl $31, %eax
    186186        movl %eax, %cr0
    187187       
Note: See TracChangeset for help on using the changeset viewer.