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.
DTS::
;******************************************************************************
; DTS
;******************************************************************************
;
;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
; DTS.MAC
;
;Output files:
; DTS.EXE
;.ASSIGN DEC SYS
;.ASSIGN DEC UNV
;.ASSIGN DEC REL
;.DECLARE DIRECT/KILL
.SET WATCH VERSION
.DIRECT /CHECK /SLOW DTSPRM.MAC, DTSCOM.MAC, DTS.MAC
.COMPILE /COMPILE/CREF DTSPRM.MAC, DTSCOM.MAC, DTS.MAC
.AS DSK LPT
.CREF
.R LINK
*DTS /SSAVE = DTS, DTSCOM /GO
.DIRECT /CHECK /SLOW DTS.EXE
.PLEASE DTS Assembly Successful
.GOTO END
%ERR:: .GOTO ERROR
%TERR:: .GOTO ERROR
ERROR:: .PLEASE Error during DTS assembly
END::
%FIN::
;[End of DTS.CTL]