source: sbliveos2/trunk/drv32/sbseg.inc@ 175

Last change on this file since 175 was 151, checked in by sandervl, 25 years ago

update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 802 bytes
Line 
1; $Id: sbseg.inc 151 2000-05-28 16:50:46Z sandervl $
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.