While the original hardware contained "core memory" which retains it's contents when the power is off, it was common practice to manually clear memory before starting operations. One reason for this was that parity errors were known to arise after a power cycle, and these errors might appear at any character and interrupt a job. It is also the case that programs which were "careless" about initializing memory might be exposed to issues that do not appear if memory has been cleared (particularly punctuation bits). Here are a couple procedures for clearing memory to a known-state. These procedures are presented using the console typewriter "control mode", but could also be performed using the full frontpanel.
Note, when using the console control mode, the console will enter the blank spaces between parameters, and also will return the carriage for commands that have a defined end. The steps are:
Memory contents can be checked by entering "A 00 0000000" and then pressing (or holding down) the TYPE button and observing the stream of "015 015 015 ..." values being printed. Press Return when done using TYPE.
Note that the last character of the program, "015" (the blank character), may be changed to any character value to fill memory with that character value.
The address mode setting determines how much of memory will be cleared. In the default 2-char mode only the first 4K will be cleared.
For reference, the program being entered is essentially (in EasyCoder form):
LCA LOAD CHAR DATA+PUNC LCA TERM FOR PREV INSTR DC #1C15 SPACE FOR FILL DC #1C15 FILL CHAR
Similar to the previous example, memory contents may be checked using the described procedure. In this case, memory will be filled with "025".
Note that the first character of the program, "025" (the 'E' character), may be changed to any character value to fill memory with that character value.
The address mode setting determines how much of memory will be cleared. In the default 2-char mode only the first 4K will be cleared.
For reference, the program being entered is essentially (in EasyCoder form):
DC #1C25 FILL CHAR NOP PRELOADS VARIANT REG DC #1C77 VARIANT FOR NOP EXM EXTENED MOVE DATA+PUNC EXM TERM FOR PREV INSTR