COBOL Manual for TNS and TNS/R Programs
Program Compilation
HP COBOL Manual for TNS and TNS/R Programs—522555-006
11-82
HIGHPIN
2. You can set the HIGHPIN flag of an object file during compilation by including the
HIGHPIN directive in the compilation command:
COBOL85 /IN cobsrc,OUT $s.#coblst,NOWAIT/ cobobj; HIGHPIN
3. Alternatively, you can set the HIGHPIN flag of an object file after compilation by
typing this Binder command:
BIND CHANGE HIGHPIN ON IN cobobj
4. Before you run the object file, you can check the current setting of the TACL
HIGHPIN built-in variable by typing:
#HIGHPIN
5. If #HIGHPIN returns a NO value, you can set the HIGHPIN run-time parameter
(and run your object file at a high PIN):
RUN cobobj / HIGHPIN ON /
6. If #HIGHPIN returns a YES value, you can simply run your object file at a high PIN:
RUN cobobj