mirror of
https://github.com/justinian/jsix.git
synced 2025-12-11 08:54:31 -08:00
Bring Intel/HP efi source into project, remove gnu-efi
This commit is contained in:
22
src/include/x86_64/efi/efisetjmp_arch.h
Normal file
22
src/include/x86_64/efi/efisetjmp_arch.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef GNU_EFI_X86_64_SETJMP_H
|
||||
#define GNU_EFI_X86_64_SETJMP_H
|
||||
|
||||
#define JMPBUF_ALIGN 8
|
||||
|
||||
typedef struct {
|
||||
UINT64 Rbx;
|
||||
UINT64 Rsp;
|
||||
UINT64 Rbp;
|
||||
|
||||
UINT64 Rdi;
|
||||
UINT64 Rsi;
|
||||
UINT64 R12;
|
||||
UINT64 R13;
|
||||
UINT64 R14;
|
||||
UINT64 R15;
|
||||
UINT64 Rip;
|
||||
UINT64 MxCsr;
|
||||
UINT8 XmmBuffer[160]; // XMM6 - XMM15
|
||||
} ALIGN(JMPBUF_ALIGN) jmp_buf;
|
||||
|
||||
#endif /* GNU_EFI_X86_64_SETJMP_H */
|
||||
Reference in New Issue
Block a user