133814Sbostic;
233814Sbostic; Copyright (c) 1988 Regents of the University of California.
333814Sbostic; All rights reserved.
433814Sbostic;
533814Sbostic; Redistribution and use in source and binary forms are permitted
6*34996Sbostic; provided that the above copyright notice and this paragraph are
7*34996Sbostic; duplicated in all such forms and that any documentation,
8*34996Sbostic; advertising materials, and other materials related to such
9*34996Sbostic; distribution and use acknowledge that the software was developed
10*34996Sbostic; by the University of California, Berkeley.  The name of the
11*34996Sbostic; University may not be used to endorse or promote products derived
12*34996Sbostic; from this software without specific prior written permission.
13*34996Sbostic; THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14*34996Sbostic; IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15*34996Sbostic; WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1633814Sbostic;
17*34996Sbostic;	@(#)support.asm	3.3 (Berkeley) 07/09/88
18*34996Sbostic;
1933814Sbostic
2031145Sminshall_TEXT	segment	byte public 'CODE'
2131145Sminshall_TEXT	ends
2231145Sminshall
2331145Sminshall_DATA	segment	word public 'DATA'
2431145Sminshall_DATA	ends
2531145Sminshall
2631145SminshallCONST	segment	word public 'CONST'
2731145SminshallCONST	ends
2831145Sminshall
2931145Sminshall_BSS	segment word public 'BSS'
3031145Sminshall_BSS	ends
3131145Sminshall
3231145SminshallDGROUP	group	CONST, _BSS, _DATA
3331145Sminshall
3431145Sminshall	assume	cs:_TEXT, ds:DGROUP, ss:DGROUP, es:DGROUP
3531145Sminshall
3631145Sminshall_TEXT	segment
3731866Sminshall	public	_iret_subr
3831145Sminshall
3931866Sminshall_iret_subr	proc	far
4031866Sminshall	iret
4131866Sminshall_iret_subr	endp
4231145Sminshall
4331145Sminshall_TEXT	ends
4431145Sminshall
4531145Sminshall	end
46