1*33814Sbostic; 2*33814Sbostic; Copyright (c) 1988 Regents of the University of California. 3*33814Sbostic; All rights reserved. 4*33814Sbostic; 5*33814Sbostic; Redistribution and use in source and binary forms are permitted 6*33814Sbostic; provided that this notice is preserved and that due credit is given 7*33814Sbostic; to the University of California at Berkeley. The name of the University 8*33814Sbostic; may not be used to endorse or promote products derived from this 9*33814Sbostic; software without specific prior written permission. This software 10*33814Sbostic; is provided ``as is'' without express or implied warranty. 11*33814Sbostic; 12*33814Sbostic; @(#)support.asm 3.2 (Berkeley) 03/28/88 13*33814Sbostic 1431145Sminshall_TEXT segment byte public 'CODE' 1531145Sminshall_TEXT ends 1631145Sminshall 1731145Sminshall_DATA segment word public 'DATA' 1831145Sminshall_DATA ends 1931145Sminshall 2031145SminshallCONST segment word public 'CONST' 2131145SminshallCONST ends 2231145Sminshall 2331145Sminshall_BSS segment word public 'BSS' 2431145Sminshall_BSS ends 2531145Sminshall 2631145SminshallDGROUP group CONST, _BSS, _DATA 2731145Sminshall 2831145Sminshall assume cs:_TEXT, ds:DGROUP, ss:DGROUP, es:DGROUP 2931145Sminshall 3031145Sminshall_TEXT segment 3131866Sminshall public _iret_subr 3231145Sminshall 3331866Sminshall_iret_subr proc far 3431866Sminshall iret 3531866Sminshall_iret_subr endp 3631145Sminshall 3731145Sminshall_TEXT ends 3831145Sminshall 3931145Sminshall end 40