nasmtests: mask fpu eip for fsave

This commit is contained in:
Fabian 2022-11-22 17:49:13 -06:00
parent 69e8eafeba
commit 530105e934

View file

@ -1,8 +1,5 @@
global _start
section .data
align 16
%include "header.inc"
sub esp, 128
@ -10,5 +7,6 @@ section .data
fld1
fsave [esp]
frstor [esp]
mov dword [esp + 12], 0 ; fpu eip (currently not emulated)
%include "footer.inc"