source: trunk/src/crtdll/asmhlp.asm@ 2912

Last change on this file since 2912 was 2177, checked in by sandervl, 26 years ago

all crt functions moved to crtdll

File size: 309 bytes
Line 
1; $Id: asmhlp.asm,v 1.1 1999-12-21 12:27:11 sandervl Exp $
2
3.586P
4 NAME asmhlp
5
6CODE32 SEGMENT DWORD PUBLIC USE32 'CODE'
7 align 4
8
9PUBLIC _POP_FPU
10_POP_FPU proc near
11 mov eax, [esp+4]
12 fstp qword ptr [eax]
13 ret
14_POP_FPU endp
15
16CODE32 ENDS
17
18 END
Note: See TracBrowser for help on using the repository browser.