 |
» |
|
|
|
The .COPYRIGHT
directive inserts a company name and date into the object module
as a copyright notice. Syntax |  |
.COPYRIGHT "company-name [, date] " Parameters |  |
- company-name,date
A sequence of ASCII characters, surrounded by quotation
marks. The string can contain up to 256 characters. When a comma
follows the company name, the next text is expected to be the date.
Example |  |
This program places a copyright notice in the object file.
Once the copyright notice is in the object file, the HP-UX utility
strings can be
used to access it. See strings(1) in HP-UX
Reference. .COPYRIGHT "My Company Name, 8 Nov 1994" .CODE .EXPORT main,ENTRY main .PROC .CALLINFO .ENTER LDI 2,%r5 ADDI 2,%r5,%r6 .LEAVE .PROCEND
|
|