forked from WindowsNT/asm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectlong.asm
99 lines (71 loc) · 1.37 KB
/
directlong.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
macro thread64header brk=0
{
local nobrk
USE16
; Remember CPU starts in real mode
db 4096 dup (144) ; // fill NOPs
cli
; Stack
mov ax,STACK16T5
mov ss,ax
mov sp,stack16t5_end
; A20
call FAR CODE16:EnableA20f
; Unreal
call FAR CODE16:EnterUnreal
; GDT and IDT
mov ax,DATA16
mov ds,ax
call far CODE16:GDTInit
call far CODE16:IDTInit
call far CODE16:IDTInit64
mov bx,gdt_start
lgdt [bx]
; Prepare Paging
nop
nop
call FAR CODE16:InitPageTableFor64
; Spurious, APIC
MOV EDI,[DS:LocalApic]
ADD EDI,0x0F0
MOV EDX,[FS:EDI]
OR EDX,0x1FF
push dword 0
pop fs
MOV [FS:EDI],EDX
MOV EDI,[DS:LocalApic]
ADD EDI,0x0B0
MOV dword [FS:EDI],0
; Breakpoint
mov ax,brk
cmp ax,1
jnz nobrk
xchg bx,bx
nobrk:
; Enter Long Mode
mov eax, cr4
bts eax, 5
mov cr4, eax
; Load new page table
mov ax,DATA16
push gs
mov gs,ax
mov edx,[gs:PhysicalPagingOffset64]
pop gs
mov cr3,edx
; Enable Long Mode
mov ecx, 0c0000080h ; EFER MSR number.
rdmsr ; Read EFER.
bts eax, 8 ; Set LME=1.
wrmsr ; Write EFER.
; Enable both PM and Paging to activate Long Mode from Real Mode
mov eax, cr0 ; Read CR0.
or eax,80000000h ; Set PE=1.
or eax,1 ; Also PM=1
mov cr0, eax ; Write CR0.
nop
nop
nop
; We are now in Long Mode / Compatibility mode
; Jump to an 64-bit segment to enable 64-bit mode
}