+ acpi: add acpi support + lapic: add lapic support + ioapic: add ioapic support + arch/x86_64: add support for "syscall"/"sysret"
8 lines
No EOL
81 B
NASM
8 lines
No EOL
81 B
NASM
bits 64
|
|
section .text
|
|
global _start
|
|
|
|
_start:
|
|
syscall
|
|
.loop:
|
|
jmp .loop |