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