v86/tests/nasm/fsave_frstor.asm
2020-12-31 19:14:29 -06:00

15 lines
154 B
NASM

global _start
section .data
align 16
%include "header.inc"
sub esp, 128
fldz
fld1
fsave [esp]
frstor [esp]
%include "footer.inc"