implemented fxsr

This commit is contained in:
Alex
2022-11-06 04:55:01 +02:00
parent 3d947c2a03
commit 776f6d71b0
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,11 @@
[bits 64]
[global _i386_fxsave]
_i386_fxsave:
fxsave [edi]
ret
[global _i386_fxrstor]
_i386_fxrstor:
fxrstor [edi]
ret