Files
kolibrios/drivers/vboxguest/vmmdev/core.inc
lex ab59015ded
Some checks failed
Build system / Check kernel codestyle (pull_request) Has been cancelled
Build system / Build (pull_request) Has been cancelled
Add VBoxGuest driver code
2026-03-04 21:16:17 +03:00

26 lines
774 B
HTML

; =============================================================================
; Модуль : VMMDev Core
; Назначение : Базовые операции VMMDev: send_request, init протокола
; Файл : vmmdev/core.inc
; =============================================================================
; Базовая настройка протокола VMMDev
proc vmmdev_init_protocol
; GuestInfo
call guest_info_report
test eax, eax
jnz .fail
; GuestInfo2 (non-fatal — не все версии VBox поддерживают)
call guest_info_2_report
test eax, eax
jz @f
DEBUGF 2, "[VBoxGuest] [VMMDev] GuestInfo2 failed (rc=0x%x), continuing...\n", eax
@@:
xor eax, eax
.fail:
ret
endp