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 = %w% %e%
-
- page ,132
-
- ;/*****************************************************************************
- ;*
- ;* SOURCE FILE NAME = FL2SEGS.ASM
- ;*
- ;* DESCRIPTIVE NAME = IBM2FLPY.ADD - Adapter Driver for ABIOS Diskette
- ;*
- ;*
- ;*
- ;* VERSION V2.0
- ;*
- ;* DATE
- ;*
- ;* DESCRIPTION : Assembler helper to order segments
- ;*
- ;*
- ;*
- ;* CHANGE ACTIVITY =
- ;* DATE FLAG APAR CHANGE DESCRIPTION
- ;* -------- ---------- ----- --------------------------------------
- ;* 05/05/94 @V82589 82589 Reorder segments so that the ADDCALLS
- ;* DHCALLS libraries are in the resident
- ;* segment.
- ;*****************************************************************************/
-
- DDHeader segment dword public 'DATA' ;* Device driver header
- DDHeader ends
-
- CONST segment dword public 'CONST' ;* Unused C stuff
- CONST ends
-
- _BSS segment dword public 'BSS' ;* Unused C stuff
- _BSS ends
-
- LIBDATA segment dword public 'DATA' ;* ADD common services data
- LIBDATA ends
-
- _DATA segment dword public 'DATA' ;* Device driver data
- _DATA ends
-
-
- StaticCode segment dword public 'CODE' ;* Permanently resident code
- StaticCode ends
-
- Code segment dword public 'CODE' ;* DevHelp code
- Code ends
-
- InitCode segment dword public 'CODE' ;* Initialization code
- InitCode ends
-
-
- SwapCode segment dword public 'CODE' ;* Swappable code
- SwapCode ends
-
- LIBCODE segment dword public 'CODE' ;* ADD common services code
- LIBCODE ends
-
-
- DGROUP group DDHeader, CONST, _BSS, LIBDATA, _DATA
- StaticGroup group LIBCODE, Code, StaticCode, InitCode
- SwapGroup group SwapCode
-
- end
-