blob: 67eb80142878f960ae191d7eb4a7c1b7a70719fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
;-------------------------------------------------------
;
; pull in the Windows start up module;
; pull in the Windows floating-point emulator;
;
; 9876h value is so that the symbol defined won't easily match
; a constant value in the debugger.
;
public __acrtused
__acrtused = 9876h
extrn __acrtused2:abs ; pull in winstart: ?winstar.obj or ?libstar.obj
public __fptaskdata
__fptaskdata = 9876h ; stub out __fptaskdata so that
; non-Windows emulator is not brought in
extrn __fpmath:far ; force in Windows-emulator imports definition
extrn __fpsignal:far ; force in Windows version of __fpsignal
end
|