home *** CD-ROM | disk | FTP | other *** search
- ;*DDK*************************************************************************/
- ;
- ; COPYRIGHT Copyright (C) 1995 IBM Corporation
- ;
- ; The following IBM OS/2 WARP source code is provided to you solely for
- ; the purpose of assisting you in your development of OS/2 WARP device
- ; drivers. You may use this code in accordance with the IBM License
- ; Agreement provided in the IBM Device Driver Source Kit for OS/2. This
- ; Copyright statement may not be removed.;
- ;*****************************************************************************/
- ; SCCSID = src/dev/dasd/os2dasd/dmsegs.asm, dsdm, basedd 93/03/19
-
- page ,132
-
- ;/*****************************************************************************
- ;*
- ;* SOURCE FILE NAME = DMSEGS.ASM
- ;*
- ;* DESCRIPTIVE NAME = OS2DASD.DMD - OS/2 DASD Device Manager
- ;* Segment ordering
- ;*
- ;*
- ;* VERSION V2.0
- ;*
- ;* DATE
- ;*
- ;* DESCRIPTION This file creates defines all segments used by the DASD
- ;* Manager. It used to insure the segments of the DASD
- ;* Manager are linked in the order required by the OS/2
- ;* device driver model.
- ;*
- ;*
- ;*
- ;*
- ;* CHANGE ACTIVITY =
- ;* DATE FLAG APAR CHANGE DESCRIPTION
- ;* -------- ---------- ----- --------------------------------------
- ;* mm/dd/yy @Vnnnnn xxxxx xxxxxxx
- ;*****************************************************************************/
-
- ;/*-------------------------------------*/
- ;/* Assembler Helper to order segments */
- ;/*-------------------------------------*/
-
- _DATA segment dword public 'DATA'
- _DATA ends
-
- CONST segment dword public 'CONST'
- CONST ends
-
- _BSS segment dword public 'BSS'
- _BSS ends
-
- _TEXT segment dword public 'CODE'
- _TEXT ends
-
- Code segment dword public 'CODE'
- Code ends
-
- SwapCode segment dword public 'CODE'
- SwapCode ends
-
- RMCode segment dword public 'CODE'
- RMCode ends
-
- DGROUP group CONST, _BSS, _DATA
- StaticGroup group Code, _TEXT, RMCode
- SwapGroup group SwapCode
-
- end
-