blob: 6629273f4bd0cb3f7388f534e6ca749bb8a7d74d (
plain) (
blame)
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
|
.intel_syntax noprefix
.section .boot, "ax", @progbits
// Trigger `KVM_EXIT_IO:KVM_EXIT_IO_OUT` by writing string to output port.
mov rdx, 0x1000 // Output port.
lea rsi, [rip + msg] // Address of string.
mov rcx, [rip + msg_len] // Len of string.
rep outsb // Write ds:rsi to output port rdx.
// Trigger `KVM_EXIT_IO:KVM_EXIT_IO_IN` by reading byte to memory from input port.
mov dx, 0x1000 // Input port.
lea di, [in_dest] // Destination address.
insb // Read byte from input port dx to ds:di.
// Trigger `KVM_EXIT_HLT`.
hlt
.section .rodata, "a", @progbits
msg:
.asciz "Hello from Long Mode!\n"
msg_len:
.byte .-msg
in_dest:
.byte 0x00
|