 |
» |
|
|
|
The .ALLOW
directive tells the Assembler to temporarily allow PA-RISC features
from a higher version level of the PA-RISC architecture. The .ALLOW
directive also tells the Assembler to temporarily allow implementation-specific
features in the assembly source file. Syntax |  |
Lines of source code Parameters |  |
Title not available (Parameters ) - 1.1
Allows PA-RISC 1.1 features. - 2.0
Allows PA-RISC 2.0 features.
Example |  |
The following example shows how to set a range of memory to
0. In PA-RISC 1.1 architecture, use the stw
instruction. In PA-RISC 2.0 architecture, use the more efficient
std instruction. .LEVEL 1.1 ; This object file will be marked as a PA 1.1 object file ; Check what version of PA Architecture we are linked for addil LR'_SYSTEM_ID-$global$,%dp ldw RR'_SYSTEM_ID-$global$(%r1),%r5 ldi CPU_PA_RISC1_1,%r4 combt,<,n %r4,%r5,$00000002 ; 1.1 specific code $00000001 addib,< 1,%r23,$00000001 stw,ma %r0,4(%r31) b,n $00000003 ; 2.0 specific code $00000002 .ALLOW 2.0 addib,< 2,%r23,$00000002 std,ma %r0,8(%r31) .ALLOW $00000003 ; General code
|
|