mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +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
|