mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 15:29:18 +00:00
implemented fxsr
This commit is contained in:
11
Architecture/amd64/cpu/fxsr.asm
Normal file
11
Architecture/amd64/cpu/fxsr.asm
Normal file
@ -0,0 +1,11 @@
|
||||
[bits 64]
|
||||
|
||||
[global _amd64_fxsave]
|
||||
_amd64_fxsave:
|
||||
fxsave [rdi]
|
||||
ret
|
||||
|
||||
[global _amd64_fxrstor]
|
||||
_amd64_fxrstor:
|
||||
fxrstor [rdi]
|
||||
ret
|
Reference in New Issue
Block a user