source: vendor/emx/current/src/dos/misc.inc

Last change on this file was 18, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.6 KB
Line 
1;
2; MISC.INC -- Miscellaneous definitions (for emx.asm)
3;
4; Copyright (c) 1991-1995 by Eberhard Mattes
5;
6; This file is part of emx.
7;
8; emx is free software; you can redistribute it and/or modify it
9; under the terms of the GNU General Public License as published by
10; the Free Software Foundation; either version 2, or (at your option)
11; any later version.
12;
13; emx is distributed in the hope that it will be useful,
14; but WITHOUT ANY WARRANTY; without even the implied warranty of
15; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16; GNU General Public License for more details.
17;
18; You should have received a copy of the GNU General Public License
19; along with emx; see the file COPYING. If not, write to
20; the Free Software Foundation, 59 Temple Place - Suite 330,
21; Boston, MA 02111-1307, USA.
22;
23; See emx.asm for a special exception.
24;
25
26SV_STACK SEGMENT
27
28 EXTRN SV_TOS:WORD
29
30SV_STACK ENDS
31
32
33RM_STACK SEGMENT
34
35 EXTRN RM_TOS:WORD
36
37RM_STACK ENDS
38
39
40SV_DATA SEGMENT
41
42 EXTRN FP_FLAG:BYTE
43 EXTRN FP_TMP:WORD
44 EXTRN DOS_MAJOR:BYTE
45 EXTRN DOS_MINOR:BYTE
46 EXTRN ENV_PATH:WORD
47 EXTRN ENV_EMXPATH:WORD
48 EXTRN ENV_EMXOPT:WORD
49 EXTRN CMDL_OPTIONS:BYTE
50
51SV_DATA ENDS
52
53
54SV_CODE SEGMENT
55
56 EXTRN PROT1:NEAR
57
58SV_CODE ENDS
59
60
61INIT_CODE SEGMENT
62
63 EXTRN EXIT:NEAR ; Cleanup and exit
64 EXTRN CLEANUP:NEAR
65 EXTRN RM_OUT_OF_MEM:NEAR
66
67INIT_CODE ENDS
Note: See TracBrowser for help on using the repository browser.