|
|
1.1 root 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) 3/28/88
13:
14: _TEXT segment byte public 'CODE'
15: _TEXT ends
16:
17: _DATA segment word public 'DATA'
18: _DATA ends
19:
20: CONST segment word public 'CONST'
21: CONST ends
22:
23: _BSS segment word public 'BSS'
24: _BSS ends
25:
26: DGROUP 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
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.