![FATEK FBs Series Manual Download Page 268](http://html1.mh-extra.com/html/fatek/fbs-series/fbs-series_manual_3764826268.webp)
Advanced Function Instruction
7 -1 0 4
FUN121
P
MOR
MATRIX OR
FUN121
P
MOR
Ma : Starting register of source matrix a
Mb : Starting register of source matrix b
Md : Starting register of destination matrix
L : Length of matrix (Ma, Mb and Md)
Ma, Mb, Md may combine with V, Z, P0~P9 to serve
indirect address application
WX
WY
WM
WS TMR CTR
HR
IR
OR
SR
ROR
DR
K
XR
Range
Ope-
rand
WX0
∣
WX240
WY0
∣
WY240
WM0
∣
WM1896
WS0
∣
WS984
T0
∣
T255
C0
∣
C255
R0
∣
R3839
R3840
∣
R3903
R3904
∣
R3967
R3968
∣
R4167
R5000
∣
R8071
D0
∣
D4095
2
∣
256
V
、
Z
P0~P9
Ma
○
○
○
○
○
○
○
○
○
○
○
○
○
Mb
○
○
○
○
○
○
○
○
○
○
○
○
○
Md
○
○
○
○
○
○
○
○
*
○
*
○
○
L
○
○
*
○
○
z
When operation control "EN" = 1 or "EN
↑
" (
P
instruction) has a
transition from 0 to 1, this instruction will perform a logic OR(If any
2 of the bits are 1, then the result will be 1, and only if both are 0
will the result be 0) operation between 2 source matrixes with a
length of L, Ma and Mb. The result will then be stored in the
destination matrix Md, which is also the same length (the OR
operation is done by bits with the same bit numbers). For example,
if Ma
0
= 0, Mb
0
= 1, then Md
0
= 1; if Ma
1
= 0, Mb
1
= 0, then Md
1
=
0; etc, right up until OR reaches Ma
16L-1
and Mb
16L-1
.
L
Ma
Mb
Md
OR
X0
EN
Ma :
Mb :
L :
5
R 10
R 0
Md :
121P.MOR
R 10
z
In the program at left, when X0 goes from 0
→
1, then matrix
Ma, comprised by R0 to R4, and matrix Mb, comprised by
R10 to R14, will do an OR operation. The results will then
be stored into the destination matrix Md, comprised by R10
to R14. In this example, Mb and Md is the same matrix, so
after operation the source matrix Mb will replaced by the
new value. The result is shown at right in the diagram
below.
Ma
15
↓
Ma
Ma
0
↓
Mb
15
↓
Mb
Mb
0
↓
Md
15
↓
Md
Md
0
↓
R0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R20 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0
R11 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R21 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R2 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R12 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R22 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R14 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R24 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
↑
Ma
79
↑
Ma
64
↑
Mb
79
↑
Mb
64
↑
Md
79
↑
Md
64
Before execution
After execution