Revision b6c202993180905efa411fcdca221c17d8862c6b authored by Andy Polyakov on 22 April 2012, 21:18:30 UTC, committed by Andy Polyakov on 01 February 2014, 21:17:36 UTC
(cherry picked from commit 71fa3bc5ece9121d1aa9bb513b5641e9ea605e14)
1 parent 45d0102
engine_vector.mar
;
; Transfer vector for VAX shareable image
;
.TITLE ENGINE
.IDENT /ENGINE/
;
; Define macro to assist in building transfer vector entries. Each entry
; should take no more than 8 bytes.
;
.MACRO FTRANSFER_ENTRY routine
.ALIGN QUAD
.TRANSFER routine
.MASK routine
JMP routine+2
.ENDM FTRANSFER_ENTRY
;
; Place entries in own program section.
;
.PSECT $$ENGINE,QUAD,PIC,USR,CON,REL,LCL,SHR,EXE,RD,NOWRT
ENGINE_xfer:
FTRANSFER_ENTRY bind_engine
FTRANSFER_ENTRY v_check
.BLKB 32768-<.-ENGINE_xfer> ; 64 pages total.
.END

Computing file changes ...