CTSS: Programming
Today we'll look at languages and other programming facilities on CTSS. Page numbers listed below are from the CTSS Programmer's Guide,
As in the previous section on CTSS commands, in some cases a command
is described in the guide but is not available on the emulated
systems, which is shown using strike through. This is because the
CTSS we have today was reconstructed from a listing tape which does
not include every command that was present then.
Languages
Command | Meaning | Guide |
---|---|---|
FAP |
IBM 7094 Assembler | p306 |
MAD |
Michigan Algorithm Decoder | p315 |
MADTRN |
Fortran II to MAD translator | p318 |
LISP |
List Processing Language | p314 |
AED |
ALGOL Extended for Design | p293 |
BEFAP |
Bell Laboratories' 7094 Assembler | p294 |
COGO-90 |
Coordinate Geometry Language | p295 |
COMIT |
String Processing Language | p296 |
DYNAMO |
Model Simulation Language | p303 |
GPSS |
General Purpose System Simulator | p313 |
SNOBOL |
String Manipulation Language | p319 |
OPS |
Online Programming System | p320 |
TIP |
Technical Information Program | p321 |
FOR4 |
Fortran IV to MAD Translator | p322 |
FORMAC |
Desk Calculator | p324 |
The languages CTSS was developed in (FAP assembly and MAD) are available, along with a translator from FORTRAN to MAD and an early LISP implementation.
The other languages are not available. I speculate that these were not maintained by the Computation Center hence were not on the listing tape used to reconstruct CTSS. The IEEE 50th anniversary retrospective document has a section on the origin and importance of some of these languages.
Loading, saving and starting programs
Command | Meaning | Guide |
---|---|---|
LOAD |
Load a program into memory | p422 |
L |
Load a program into memory, providing more table space | p422 |
LOADGO |
Load a program into memory and start it | p422 |
VLOAD |
Load a program into memory, remove the loader | p422 |
NCLOAD |
Load a program into memory, remove the loader and commons | p422 |
LDABS |
Load a program into memory without relocation, | p428 |
USE |
Supply missing modules when loading a program | p422 |
SAVE |
Save a dormant program | p341 |
MYSAVE |
Save a dormant program and the state of its files | p341 |
START |
Start a program in memory | p430 |
RSTART |
Restart a chain of programs in memory | p430 |
RESTOR |
Loads a program into memory from disk | p430 |
RECALL |
As RESTOR , but also restores old command line args |
p430 |
RESUME |
Loads and runs a program. Can be abbreviated to R |
p430 |
CONTIN |
Load and continue a saved chain of programs | p430 |
DO |
Execute a saved program from common files | p440 |
LAED |
Loader for the AED language |
p432 |
PLOAD |
Simulate the loading process | p441 |
BLIP |
Show a message every few seconds of program execution | p442 |
RUN |
Used by TIP to execute programs |
p443 |
The paradigm for creating user programs and running them is different
from modern operating systems. As an example, on Unix if you have a
main program main.c
and two modules a.c
and b.c
you might
compile them to a binary foo
as follows:
cc -c a.c cc -c b.c cc -o foo main.c a.o b.o
The first two commands make object files a.o
and b.o
. The last
command compiles main.c
and then invokes the linker to bind together
the three modules into an executable file called foo
.
Now let's say we are on CTSS and programming in MAD instead of C, so
now we have three files A MAD
, B MAD
, and MAIN MAD
. First we
compile each of the components:
MAD A MAD B MAD MAIN
Now we have object files called A BSS
, B BSS
, MAIN BSS
.
Instead of linking them to a disk file, we load them into memory:
LOAD MAIN A B
At this point you can start the program immediately - without ever creating an executable file - with
START
The LOADGO
command is basically a LOAD
followed by a START
.
Instead of starting, we could save the memory image to a SAVED
file:
LOAD MAIN A B SAVE FOO
This creates a file called FOO SAVED
. It can then be loaded and
started with RESUME
, or simply with R
:
R FOO
SAVE
can be run at any time for a user program. Say you have a
program that on start up reads a configuration file, parses it and
then enters a loop where it prompts for a command and prints a
response. (For example, ELIZA!) If you pressed the interrupt key
after the config file was loaded and then ran SAVE
, the file it
creates would allow you to restart the program at the same point, ie
within the prompt-response loop rather than right at the beginning.
Similarly, if you have a job which does a lot of calculation, you could
interrupt it, save the current state, log off, and come back later and
restart it at the saved point.
These are the load/save commands you will use the most often; the
others in the table are useful in specific scenarios. For example, L
allows more object files to be loaded at the expense of space
available for the program.
Library management
Command | Meaning | Guide |
---|---|---|
EXTBSS |
Extract a BSS file from a COMBIN -ed library |
p411 |
UPDBSS |
Update a BSS file in a COMBIN -ed library |
p411 |
Libraries of object (BSS) files are created on CTSS by using COMBIN
.
For example, to create library MYLIB BSS
from two objects A BSS
and
B BSS
:
COMBIN * MYLIB BSS A B
(the *
means don't change the line numbers in the object file).
Once created, these libraries can be manipulated with the above commands.
Using our example from the previous section, instead of loading each object file:
LOAD MAIN A B
with a library file we can now use the (LIBE)
option:
LOAD MAIN (LIBE) MYLIB
Debugging
Command | Meaning | Guide |
---|---|---|
FAPDBG |
Symbolic debugger for assembly language programs | p449 |
MADBUG |
Symbolic debugger for MAD language programs | p459 |
DEBUG |
CTSS symbolic debugger | p486 |
PM |
Print post mortem information about a program | p473 |
STOPAT |
Set a breakpoint | p479 |
PATCH |
Modify a program's memory image | p479 |
TRA |
Transfer when reaching a certain address | p479 |
SPATCH |
Absolute program patching | p477 |
STRACE |
Trace a running program | p480 |
SD |
Supervisor debug printing | p478 |
SP |
Supervisor debug patching | p478 |
STOMAP |
Print storage (memory) map | p503 |
The standard library
CTSS also had a comprehensive library of functions available to programmers, both from assembly and high level languages like MAD. These are documented in the CTSS Programmer's Guide section AG (p108 onwards) and cover
- Console I/O
- File I/O and status
- Tapes and pseudo tapes
- Error handling and program status
- Command and subsystem control
- Conversion (eg number to BCD string)
- Timers
"Pseudo tapes" here means when a program tries to access a tape - eg
via language constructs like MAD's READ BCD TAPE
statement - it is
redirected to a disk file, as regular users would not have access to
physical tapes.
Questions, corrections, comments
I welcome any questions or comments, and also especially any corrections if I have got something wrong. Please email me at rupert@timereshared.com