source: sbliveos2/trunk/runtime/segments.inc@ 562

Last change on this file since 562 was 142, checked in by ktk, 25 years ago

Import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1; $Id: segments.inc 142 2000-04-23 14:55:46Z ktk $
2
3;;DDK*************************************************************************/
4;; */
5;; COPYRIGHT Copyright (C) 1995 IBM Corporation */
6;; */
7;; The following IBM OS/2 WARP source code is provided to you solely for */
8;; the purpose of assisting you in your development of OS/2 WARP device */
9;; drivers. You may use this code in accordance with the IBM License */
10;; Agreement provided in the IBM Device Driver Source Kit for OS/2. This */
11;; Copyright statement may not be removed. */
12;; */
13;;****************************************************************************/
14
15;; Defines segment ordering for 16-bit DD's with MSC 6.0
16
17.386
18.seq
19
20_HEADER segment dword public use16 'DATA'
21_HEADER ends
22
23_DATA segment dword public use16 'DATA'
24_DATA ends
25
26CONST segment dword public use16 'DATA'
27CONST ends
28
29CONST2 segment dword public use16 'DATA'
30CONST2 ends
31
32_BSS segment dword public use16 'BSS'
33_BSS ends
34
35_ENDDS segment dword public use16 'ENDDS'
36_ENDDS ends
37
38_INITDATA segment dword public use16 'ENDDS'
39_INITDATA ends
40
41_ENDINITDATA segment dword public use16 'ENDDS'
42_ENDINITDATA ends
43
44_TEXT segment dword public use16 'CODE'
45_TEXT ends
46
47_ENDCS segment dword public use16 'CODE'
48_ENDCS ends
49
50_INITTEXT segment dword public use16 'CODE'
51_INITTEXT ends
52
53DGROUP group _HEADER, CONST, CONST2, _DATA, _BSS, _ENDDS, _INITDATA, _ENDINITDATA
54CGROUP group _TEXT, _ENDCS, _INITTEXT
55
Note: See TracBrowser for help on using the repository browser.