mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
12 lines
129 B
NASM
12 lines
129 B
NASM
[bits 64]
|
|
|
|
[global _amd64_fxsave]
|
|
_amd64_fxsave:
|
|
fxsave [rdi]
|
|
ret
|
|
|
|
[global _amd64_fxrstor]
|
|
_amd64_fxrstor:
|
|
fxrstor [rdi]
|
|
ret
|