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/os2scsi/scsegs.asm, scsy, ddk_subset, b_bdd.032 93/03/19
-
- page ,132
- ;/*****************************************************************************
- ;*
- ;* SOURCE FILE NAME = SCSEGS.ASM
- ;*
- ;* DESCRIPTIVE NAME = Declare segments for OS2SCSI.DMD
- ;*
- ;*
- ;*
- ;* VERSION V2.0
- ;*
- ;* DATE
- ;*
- ;* DESCRIPTION Insures segments are linked in proper order according
- ;* to OS/2 Device Driver model.
- ;*
- ;*
- ;* CHANGE ACTIVITY =
- ;* DATE FLAG APAR CHANGE DESCRIPTION
- ;* -------- ---------- ----- --------------------------------------
- ;* mm/dd/yy @Vr.mpppxx 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
-
- StaticCode segment dword public 'CODE'
- StaticCode ends
-
- Code segment dword public 'CODE'
- Code ends
-
- InitCode segment dword public 'CODE'
- InitCode ends
-
- SwapCode segment dword public 'CODE'
- SwapCode ends
-
- DGROUP group CONST, _BSS, _DATA
- StaticGroup group StaticCode, InitCode
- SwapGroup group SwapCode
-
- end
-