Last change
on this file was 4667, checked in by phaller, 25 years ago |
Major move towards WINE CRTDLL, mixture between both code branches
|
File size:
380 bytes
|
Rev | Line | |
---|
[4667] | 1 | ; $Id: asmhlp.asm,v 1.1 2000-11-21 23:48:54 phaller Exp $
|
---|
| 2 |
|
---|
| 3 | .586P
|
---|
| 4 | NAME asmhlp
|
---|
| 5 |
|
---|
| 6 | CODE32 SEGMENT DWORD PUBLIC USE32 'CODE'
|
---|
| 7 | align 4
|
---|
| 8 |
|
---|
| 9 | PUBLIC _POP_FPU
|
---|
| 10 | _POP_FPU proc near
|
---|
| 11 | mov eax, [esp+4]
|
---|
| 12 | fstp qword ptr [eax]
|
---|
| 13 | ret
|
---|
| 14 | _POP_FPU endp
|
---|
| 15 |
|
---|
| 16 | public _SetEDX
|
---|
| 17 | _SetEDX proc near
|
---|
| 18 | mov edx, [esp+4];
|
---|
| 19 | ret
|
---|
| 20 | _SetEDX endp
|
---|
| 21 |
|
---|
| 22 | CODE32 ENDS
|
---|
| 23 |
|
---|
| 24 | END
|
---|
Note:
See
TracBrowser
for help on using the repository browser.