
Multiplier-accumulator unit
ST10F252M
Some precautions are required for left shift with enabled saturation. If the MSW.MAE
bit-field (the most significant byte of the 40-bit signed accumulator) contains significant bits,
the 32-bit value in the accumulator is generally saturated. However, it is possible that a left
shift may move some significant bits out of the accumulator. The 40-bit result will be
misinterpreted and will be either not be saturated or saturated incorrectly. There is a chance
that the result of a left shift may produce a result which can saturate an original positive
number to the minimum negative value, or vice versa.
6.2.9
Repeat unit
The MAC includes a repeat unit that allows the repetition of some co-processor instructions
up to 213 (8192) times. The repeat count may be specified either by an immediate value (up
to 31 times) or by the content of the repeat count (bits 12 to 0) in the MAC repeat word
(MRW). If the repeat count is “N” the instruction is executed “N+1” times. At each iteration of
a cumulative instruction, the repeat count is tested for zero. If it is zero the instruction is
terminated, otherwise the repeat count is decremented and the instruction is repeated.
During such a repeat sequence, the repeat flag in MRW is set until the last execution of the
repeated instruction.
The syntax of repeated instructions is shown in the following examples:.
In this example, the instruction is repeated according to a 5-bit immediate value. The repeat
count in MRW is automatically loaded with this value minus one (MRW=23).
In this example, the instruction is repeated according to the repeat count in MRW. Due to the
pipeline processing at least one instruction should be inserted between the write of MRW
and the next repeated instruction.
Repeat sequences may be interrupted. When an interrupt occurs during a repeat sequence,
the sequence is stopped and the interrupt routine is executed. The repeat sequence
resumes at the end of the interrupt routine. During the interrupt, MR remains set, indicating
that a repeated instruction has been interrupted and the repeat count holds the number
(minus 1) of repetition that remains to complete the sequence. If the repeat unit is used in
the interrupt routine, MRW must be saved and restored before the end of the interrupt
routine.
Note:
The repeat count should be used with caution. In this case, MR should be written as 0. In
general, MR should not be set otherwise correct instruction processing can not be
guaranteed.
6.2.10
MAC interrupt
The MAC can generate an interrupt according to the value of the status flags C (carry), SV
(overflow), E (extension) or SL (limit) of the MSW. The MAC interrupt is globally enabled
when the MIE flag in MCW is set. When it is enabled the flags C, SV, E or SL can trigger a
MAC interrupt when they are set provided that the corresponding mask flag, CM, VM, EM or
LM in MCW, is also set. A MAC interrupt request sets the MIR flag in MSW; this flag must be
1
Repeat #24 times
CoMAC[IDX0+],[R0+]
; repeated 24 times
1
MOV MRW, #00FFh
; load MRW
NOP
; instruction latency
Repeat MRW times
CoMACM [IDX1-],[R2+]
; repeated 256 times