1
0
mirror of https://github.com/PDP-10/stacken.git synced 2026-03-01 17:26:38 +00:00
Files
Lars Brinkhoff 6e18f5ebef Extract files from tape images.
Some tapes could not be extracted.
2021-01-29 10:47:33 +01:00

56 lines
951 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
DTR::
;******************************************************************************
; DTR
;******************************************************************************
;
;Required cusps:
; COMPIL.EXE
; CREF.EXE
; DIRECT.EXE
; LINK.EXE
; LNK???.EXE
; MACRO.EXE
;
;Required files:
; JOBDAT.UNV
; MACSYM.UNV
; MACTEN.UNV
; NSCAN.UNV
; UUOSYM.UNV
; DTSPRM.MAC
; DTSCOM.MAC
; DTR.MAC
;
;Output files:
; DTR.EXE
;.ASSIGN DEC SYS
;.ASSIGN DEC UNV
;.ASSIGN DEC REL
;.DECLARE DIRECT/KILL
.SET WATCH VERSION
.DIRECT /CHECK /SLOW DTSPRM.MAC, DTSCOM.MAC, DTR.MAC
.COMPILE /COMPILE/CREF DTSPRM.MAC, DTSCOM.MAC, DTR.MAC
.AS DSK LPT
.CREF
.R LINK
*DTR /SSAVE = DTR, DTSCOM /GO
.DIRECT /CHECK /SLOW DTR.EXE
.PLEASE DTR Assembly Successful
.GOTO END
%ERR:: .GOTO ERROR
%TERR:: .GOTO ERROR
ERROR:: .PLEASE Error during DTR assembly
END::
%FIN::
;[End of DTR.CTL]