home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ddkx86v5.zip
/
DDKX86
/
SRC
/
DEV
/
PRINTER
/
PRTSEGS.ASM
< prev
Wrap
Assembly Source File
|
1995-04-14
|
2KB
|
49 lines
;*DDK*************************************************************************/
;
; COPYRIGHT (C) Microsoft Corporation, 1989
; 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/printer/prtsegs.asm, prtdd, ddk_subset, b_bdd.032 94/09/15
;/**********************************************************************
;/* *
;/* *
;/* *
;/**********************************************************************
DSEG segment word public 'DATA'
DSEG ends
_DATA segment word public 'DATA'
_DATA ends
CONST segment word public 'CONST'
CONST ends
_BSS segment word public 'BSS'
_BSS ends
CSEG segment word public 'CODE'
CSEG ends
RMCode segment word public 'CODE'
RMCode ends
_TEXT segment word public 'CODE'
_TEXT ends
SWAPSEG segment word public 'CODE'
SWAPSEG ends
; Programmer cannot control location of CONST and _BSS class segments
; being grouped. They are always last. Do not put anything in these
; segments since they will be truncated after device driver initialization.
DGROUP GROUP DSEG, _DATA, CONST, _BSS
CGROUP GROUP CSEG, RMCode, _TEXT
end