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.;
- ;*****************************************************************************/
- ;/****************************************************************************/
- ;/* */
- ;/* */
- ;/****************************************************************************/
- ;
- ;/********************* Start of Specifications ******************************/
- ;/* */
- ;/* Source File Name: ESDISEGS.ASM */
- ;/* */
- ;/* Descriptive Name: ESDI CODE/DATA segment declarations. */
- ;/* */
- ;/* Copyright: */
- ;/* */
- ;/* Status: */
- ;/* */
- ;/* Function: Part of ESDI device driver for OS/2 family 2 */
- ;/* */
- ;/* */
- ;/* Notes: */
- ;/* Dependencies: */
- ;/* Restrictions: */
- ;/* */
- ;/* Entry Points: */
- ;/* */
- ;/* External References: See EXTRN statements below */
- ;/* */
- ;/********************** End of Specifications *******************************/
-
- ;/*-------------------------------------*/
- ;/* 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
-
- Code segment dword public 'CODE'
- Code ends
-
- _TEXT segment dword public 'CODE'
- _TEXT ends
-
- DGROUP group CONST, _BSS, _DATA
- StaticGroup group Code, _TEXT
- end
-