TianoCore EDK2 master
Loading...
Searching...
No Matches
Monitor.c
Go to the documentation of this file.
1
26EFIAPI
28 IN UINTN RegisterEax,
29 IN UINTN RegisterEcx,
30 IN UINTN RegisterEdx
31 )
32{
33 _asm {
34 mov eax, RegisterEax
35 mov ecx, RegisterEcx
36 mov edx, RegisterEdx
37 _emit 0x0f // monitor
38 _emit 0x01
39 _emit 0xc8
40 }
41}
UINT64 UINTN
#define IN
Definition: Base.h:279
UINTN EFIAPI AsmMonitor(IN UINTN RegisterEax, IN UINTN RegisterEcx, IN UINTN RegisterEdx)
Definition: Monitor.c:27