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

Last change on this file since 144 was 142, checked in by ktk, 25 years ago

Import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 722 bytes
Line 
1; $Id: sbseg.inc 142 2000-04-23 14:55:46Z ktk $
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
12BSS32 segment dword use32 public 'BSS'
13BSS32 ends
14
15_BSS segment dword use32 public 'BSS'
16_BSS ends
17
18C_COMMON segment dword use32 public 'DATA'
19C_COMMON ends
20
21c_common segment dword use32 public 'DATA'
22c_common ends
23
24CONST32 segment dword use32 public 'CONST'
25CONST32 ends
26
27DATA32 segment dword use32 public 'DATA'
28DATA32 ends
29
30CONST SEGMENT DWORD PUBLIC USE32 'DATA'
31CONST ENDS
32
33CONST2 SEGMENT DWORD PUBLIC USE32 'DATA'
34CONST2 ENDS
35
36;volgorde laten staan!
37DGROUP group DATA32, CONST32, C_COMMON, c_common, CONST2, CONST, BSS32, _BSS
38
Note: See TracBrowser for help on using the repository browser.