Trailing-Edge
-
PDP-10 Archives
-
decuslib20-03
-
decus/20-0078/libsim/enterd.mac
There is 1 other file named enterd.mac in the archive. Click here to see a list.
COMMENT * SIMULA specification;
OPTIONS(/E:QUICK,enterdebug);
PROCEDURE enterdebug(maycontinue); BOOLEAN maycontinue;
COMMENT SIMDDT is entered via the ZYQ212 error message.
;
!*;! MACRO-10 code !*;!
TITLE enterdebug
ENTRY enterdebug
SUBTTL SIMULA utility, Lars Enderin Jan 1976
;!*** Copyright 1976 by the Swedish Defence Research Institute. ***
;!*** Copying is allowed. ***
sall
search simmac,simmcr,simrpa
macinit
;! Local definitions ;!
maycontinue==XWAC1
enterdebug:
PROC
IF ;! NOT maycontinue
JUMPN XWAC1,FALSE
THEN ;! Give error message
RTSERR 212 ;! without continuation
BRANCH OCEP
FI
RTSERR QDSCON,212
RETURN
EPROC
LIT
END;