o The alternate form of .RESTORE_PSECT is .RESTORE.
o You cannot use .RESTORE_PSECT to overwrite previous data-
storage initializations. In the following example, MACRO-
64 attempts to store 42 over 43 and fails, resulting in a
diagnostic:
.PSECT A
.SAVE PSECT
.PSECT A
.QUAD 43
.RESTORE PSECT
.QUAD 42