include ultrix -> vaxuba
[unix-history] / usr / src / usr.bin / tn3270 / distribution / sys_dos / support.asm
CommitLineData
2d415723
KB
1;
2; Copyright (c) 1988 Regents of the University of California.
3; All rights reserved.
4;
5; Redistribution and use in source and binary forms are permitted
6; provided that this notice is preserved and that due credit is given
7; to the University of California at Berkeley. The name of the University
8; may not be used to endorse or promote products derived from this
9; software without specific prior written permission. This software
10; is provided ``as is'' without express or implied warranty.
11;
12; @(#)support.asm 3.2 (Berkeley) %G%
13
34bfe048
GM
14_TEXT segment byte public 'CODE'
15_TEXT ends
16
17_DATA segment word public 'DATA'
18_DATA ends
19
20CONST segment word public 'CONST'
21CONST ends
22
23_BSS segment word public 'BSS'
24_BSS ends
25
26DGROUP group CONST, _BSS, _DATA
27
28 assume cs:_TEXT, ds:DGROUP, ss:DGROUP, es:DGROUP
29
30_TEXT segment
289cb558 31 public _iret_subr
34bfe048 32
289cb558
GM
33_iret_subr proc far
34 iret
35_iret_subr endp
34bfe048
GM
36
37_TEXT ends
38
39 end