xref: /csrg-svn/usr.bin/tn3270/distribution/sys_dos/support.asm (revision 33814)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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) 03/28/88
13
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
31	public	_iret_subr
32
33_iret_subr	proc	far
34	iret
35_iret_subr	endp
36
37_TEXT	ends
38
39	end
40

served by {OpenGrok

Last Index Update: Wed Jan 29 22:40:09 GMT 2025