|
Last change
on this file since 577 was 354, checked in by stevenhl, 18 years ago |
|
Import untested baseline cmedia sources, work products and binaries
Binaries and work products should be deleted from repository.
once new builds are verified to work.
|
|
File size:
1.7 KB
|
| Line | |
|---|
| 1 | ; $Id: segments.asm,v 1.1 2000/04/23 14:55:20 ktk Exp $
|
|---|
| 2 |
|
|---|
| 3 | ; SCCSID = %W% %E%
|
|---|
| 4 | ;***************************************************************************;
|
|---|
| 5 | ; ;
|
|---|
| 6 | ; Copyright (c) IBM Corporation 1994 - 1997. ;
|
|---|
| 7 | ; ;
|
|---|
| 8 | ; The following IBM OS/2 source code is provided to you solely for the ;
|
|---|
| 9 | ; the purpose of assisting you in your development of OS/2 device drivers. ;
|
|---|
| 10 | ; You may use this code in accordance with the IBM License Agreement ;
|
|---|
| 11 | ; provided in the IBM Device Driver Source Kit for OS/2. ;
|
|---|
| 12 | ; ;
|
|---|
| 13 | ;;**************************************************************************;
|
|---|
| 14 | ;;@internal %W%
|
|---|
| 15 | ; Defines segment ordering for 16-bit DD's with Watcom C++
|
|---|
| 16 | ; @version %I%
|
|---|
| 17 | ; @context
|
|---|
| 18 | ; Unless otherwise noted, all interfaces are Ring-0, 16-bit, kernel stack.
|
|---|
| 19 | ; @notes
|
|---|
| 20 | ; @history
|
|---|
| 21 | ; 01-Jul-95 Timur Tabi Creation
|
|---|
| 22 | ;
|
|---|
| 23 | ;;**************************************************************************;
|
|---|
| 24 |
|
|---|
| 25 | .386
|
|---|
| 26 | .seq
|
|---|
| 27 |
|
|---|
| 28 | include ..\include\segments.inc
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 | public _end_of_data
|
|---|
| 32 | public _end_of_heap
|
|---|
| 33 | public _end_of_initdata
|
|---|
| 34 | public _end_of_text
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 | _ENDDS segment
|
|---|
| 38 | _end_of_data label byte
|
|---|
| 39 | _ENDDS ends
|
|---|
| 40 |
|
|---|
| 41 | _ENDHEAP segment
|
|---|
| 42 | _end_of_heap label byte
|
|---|
| 43 | _ENDHEAP ends
|
|---|
| 44 |
|
|---|
| 45 | _ENDINITDATA segment
|
|---|
| 46 | _end_of_initdata label byte
|
|---|
| 47 | _ENDINITDATA ends
|
|---|
| 48 |
|
|---|
| 49 | _ENDCS segment
|
|---|
| 50 | _end_of_text label byte
|
|---|
| 51 | _ENDCS ends
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 | end
|
|---|
| 55 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.