Você está na página 1de 1

On pp 45, 4th line in Example 2.7, change example2_5.m to example2_7.

m
On pp 328, problem 14 (b), should be How many MIPS does this FIR filtering algori
thm require when the Blackfin processor is operating at 300 MHz
On page 333, 6 line from top, should be #pragma optimize_off
On page 192, 8(c) workaround:
- Modify R1 = w[I0++M0] to these two instructions:
R1.L = w[I0];
I0 += M0; - Modify R1 = b[I0++M0] to these three instruc
tions:
P0 = I0;
R1 = b[P0](z);
I0 += M0; On page 192, Q8(d) workaround:
P0 can't be added with M0, so the alternative:
I0 = P0;
I0 += M0;
R0 = [I0];
On pp 282, Figure 7.3, the labels in DSDATA1 should be DACL0, DACL1, DACL2

Você também pode gostar