This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

C6000 intrinsics union reg32 definition

Hi 

I am trying to use the c6000 intrinsics package and cannot find the definition of "union reg32".  Could somebody direct me where to find this?

Thanks

  • In the file install_root/c6xsim/_C6xSimulator_priv.h you will find ...

    union reg32 
    {
      int32    x1;
      int32x2  x2;
      int32x4  x4;
    
      uint32   x1u;
      int32x2u x2u;
      int32x4u x4u;
    
      float32    xf;
    };

    Thanks and regards,

    -George