home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
bp7os2
/
os2rtl
/
sys
/
wi87.asm
< prev
next >
Wrap
Assembly Source File
|
1993-08-16
|
799b
|
23 lines
;//////////////////////////////////////////////////////
;/ /
;/ Run-time Library für Borland Pascal 7.0 unter OS/2 /
;/ 80x87-Emulation für OS/2-Programme. /
;/ /
;/ 1993 Matthias Withopf / c't /
;/ Originalversion (c) 1988,92 Borland International /
;/ /
;//////////////////////////////////////////////////////
.286p
CODE SEGMENT BYTE PUBLIC
ASSUME CS:CODE
PUBLIC InitEM86,InitEM87
InitEM86 PROC FAR
InitEM87: RET
InitEM86 ENDP
CODE ENDS
END