1160814Ssimon;
2160814Ssimon; Transfer vector for VAX shareable image
3160814Ssimon;
4160814Ssimon	.TITLE ENGINE
5160814Ssimon	.IDENT /ENGINE/
6160814Ssimon;
7160814Ssimon; Define macro to assist in building transfer vector entries.  Each entry
8160814Ssimon; should take no more than 8 bytes.
9160814Ssimon;
10160814Ssimon	.MACRO FTRANSFER_ENTRY routine
11160814Ssimon	.ALIGN QUAD
12160814Ssimon	.TRANSFER routine
13160814Ssimon	.MASK	routine
14160814Ssimon	JMP	routine+2
15160814Ssimon	.ENDM FTRANSFER_ENTRY
16160814Ssimon;
17160814Ssimon; Place entries in own program section.
18160814Ssimon;
19160814Ssimon	.PSECT $$ENGINE,QUAD,PIC,USR,CON,REL,LCL,SHR,EXE,RD,NOWRT
20160814SsimonENGINE_xfer:
21160814Ssimon	FTRANSFER_ENTRY bind_engine
22160814Ssimon	FTRANSFER_ENTRY v_check
23160814Ssimon	.BLKB 32768-<.-ENGINE_xfer>	; 64 pages total.
24160814Ssimon	.END
25