-
Notifications
You must be signed in to change notification settings - Fork 47
/
code64.asm
73 lines (52 loc) · 1.12 KB
/
code64.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
; --------------------------------------- 64 bit Code ---------------------------------------
SEGMENT CODE64 USE64
ORG 0h
macro break64
{
xchg bx,bx
}
include 'guest64.asm'
include 'acpi64.asm'
include 'thread64.asm'
INCLUDE 'int64.asm'
include 'vmxhost64.asm'
; --------------------------------------- One interrupt definition ---------------------------------------
intr6400:
nop
nop
IRETQ
Start64:
xor r8d,r8d
linear rsp,stack64_end
push rax
mov rax,0
pop rax
; access d64 using linear, ds not used
xor rax,rax
mov ax,DATA64
shl rax,4
add rax,d64
mov byte [rax],1
; --------------------------------------- Interrupt Test ---------------------------------------
linear rax,idt_LM_start
lidt [rax]
int 0x1;
; --------------------------------------- SIPI to real mode test ---------------------------------------
if TEST_LM_SIPI > 0
qlock64 mut_1
linear rax,Thread16_4,CODE16
mov rbx,1
call SendSIPI64
mov rax,mut_1
call qwait64
end if
if TEST_VMX > 0
; VMX operations
call VMX_Host
end if
; Back to Compatibility Mode
push code32_idx
xor rcx,rcx
mov ecx,Back32
push rcx
retf