.pg .x record .x Obsolete Macros > record .lt ------------------------------------------------------------------------ RECORD name [PSECT=psect-name] ... END ------------------------------------------------------------------------ .el .b 3 The RECORD macro: .b .lt record example data-statements end .el .b is equivalent to: .b .lt psect example_abs data-statemens end .el .b If PSECT_=psect-name is specified, then psect-name will be the .PSECT name; otherwise, the name of the record appended with the string "_abs" will be the psect name. .b For every RECORD macro specified, a corresponding END macro must also be specified. .b For example: .b .lt record uic uic.member: .blkw 1 uic.group: .blkw 1 .=uic.member uic.longword: .blkl 1 end .el