Trailing-Edge
-
PDP-10 Archives
-
decuslib10-05
-
43,50337/23/restor.mac
There is 1 other file named restor.mac in the archive.  Click here to see a list.
COMMENT * SIMULA specification;
OPTIONS(/E:CODE,ZYLRES);
PROCEDURE restore(filespec);
VALUE filespec; TEXT filespec;
COMMENT restores the program specified by filespec without closing files.
Normally, an explicit extension should NOT be given.
If the device was not specified or specified as DSK:, and no ppn was
given, SYS: is tried as device on failure.
;
!*;! MACRO-10 code !*;!
	TITLE	restore
	ENTRY	ZYLRES
	SUBTTL	SIMULA utility, Lars Enderin Feb 1976
;!*** Copyright 1976 by the Swedish Defence Research Institute. ***
;!*** Copying is allowed.					***
	sall
	search	simmac,simmcr,simrpa
	macinit
	EXTERN	ZYLRUN
	;! Local definitions ;!
	filespec==2
ZYLRES:BRANCH	ZYLRUN+1
	END;