AMT Datasouth PAL User Manual
Page 125

119
_imp
_imp
Description
Performs a logical or bit-wise implication operation on two boolean or integer values.
Usage
Any1Bool Any2Bool
_imp
ImpBool
Any1Int Any2Int
_imp
ImpInt
Any1Bool
Boolean. First operand for the logical implication operation.
Any2Bool
Boolean. Second operator for the logical implication operation.
ImpBool
Boolean. Result of the logical implication operation.
Any1Int
Integer. First operand for the bit-wise implication operation.
Any2Int
Integer. Second operand for the bit-wise implication operation.
ImpInt
Integer. Result of the bit-wise implication operation.
Comments
The following table lists the results of performing the logical implication operation on two boolean
values.
Any1Bool
false
true
Any2Bool
false
true
false
true
true
true
The following table lists the results for each bit position when performing the bit-wise implication
operation on two integer values.
Any1Int
0
1
Any2Int
0
1
0
1
1
1