mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-27 23:14:38 +00:00
12 lines
125 B
NASM
12 lines
125 B
NASM
[bits 64]
|
|
|
|
[global _i386_fxsave]
|
|
_i386_fxsave:
|
|
fxsave [edi]
|
|
ret
|
|
|
|
[global _i386_fxrstor]
|
|
_i386_fxrstor:
|
|
fxrstor [edi]
|
|
ret
|