source: cmedia/trunk/Drv32/sbseg.inc@ 577

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: 895 bytes
Line 
1; $Id: sbseg.inc,v 1.2 2000/05/28 16:50:42 sandervl Exp $
2
3DATA16 segment word public use16 'DATA16'
4DATA16 ends
5
6CODE16 segment word public use16 'CODE'
7CODE16 ends
8
9CODE32 segment dword public use32 'CODE'
10CODE32 ends
11
12_TEXT segment dword public use32 'CODE'
13_TEXT ends
14
15BSS32 segment dword use32 public 'BSS'
16BSS32 ends
17
18_BSS segment dword use32 public 'BSS'
19_BSS ends
20
21C_COMMON segment dword use32 public 'DATA'
22C_COMMON ends
23
24c_common segment dword use32 public 'DATA'
25c_common ends
26
27CONST32 segment dword use32 public 'CONST'
28CONST32 ends
29
30DATA32 segment dword use32 public 'DATA'
31DATA32 ends
32
33CONST SEGMENT DWORD PUBLIC USE32 'DATA'
34CONST ENDS
35
36CONST2 SEGMENT DWORD PUBLIC USE32 'DATA'
37CONST2 ENDS
38
39;volgorde laten staan!
40DGROUP group DATA32, CONST32, C_COMMON, c_common, CONST2, CONST, BSS32, _BSS
41
42CGROUP group CODE32, _TEXT
Note: See TracBrowser for help on using the repository browser.