.pg .x psect .x end .lt ------------------------------------------------------------------------ PSECT psect-name ... END ------------------------------------------------------------------------ .el .b 3 The PSECT macro sets up a .PSECT enviornment after saving the current enviornement by generating .SAVE__PSECT and .PSECT directives. .b The ^&psect-name\& specified will be the .PSECT name and have the _<^&attributes\&_> specified. .b The END macro restores the previous enviornment by generating a .RESTORE__PSECT directive. .b For example: .b .lt PSECT example save: .blkw 1 flag: .blkb 1 END .el