Hello,
For a high level description of what each code line does, please look in the code itself:
/*=========================================================================
* COPY simple + R2I: combine A with B and C with D for real FFTs
*=========================================================================*/
copy .real .simple_copy .keep_orig SAMPLES_PER_CHIRP OR_0_0_0, OR_1_0_0, 0x0, 0x0, 0x4, 0x1, 0x0 /* A & B */
For a detailed description of each field within the instruction itself, please see the SPT2.8 assembler manual, in the S32DS for Power installation folder:
S32DS_Power_v2.1\S32DS\build_tools\SPT2\doc
copy
in_dattyp cp_type rst_n_keep vec_sz src_add, dest_add, blk_src_inc, blk_dest_inc, src_add_inc,
dest_add_inc, mask
In this particular case:
blk_src_inc = 0x0;
blk_dest_inc = 0x0;
src_add_inc = 0x4;
dest_add_inc = 0x1;
mask = 0x0;