• Availability of C16x textbook ?
    Are there any classroom style textbooks available for the c16x written in English? Basically, I'm looking for any other references aside from the Infineon/Hitex manuals. Thanks.
  • CARM THUMB *.LST Adresscounter
    Hallo all, Is there an error in the listing file? It seems, as if the Adresscounter is wrongly increased. Here an Example: 0000000C 7001 STRB R1,[R0,#0x0] ; 197: _nop_(); 0000000E F7FF BL...
  • CARM compiler bug
    A few days ago I encountered with strange program behavior, and the reason I found was compiler bug. The problem can be revealed after compilation of the following code: double Variance(int Sum...
  • CARM and MULL/MLAL instructions ?
    Is there any way to get the compiler to use MULL/MLAL instructions, or can they only be used in assembler ? long a, b; long long c; ... c += a * b; does not generate a MLAL. My target is an...
  • CARM & bitfields in a structure : is this a bug ?
    typedef struct { int query_zone:4; }statusrequest_t; statusrequest_t state; state.query_zone=8; if ( state.query_zone==8) printf("The result matches n=%i n\r",state.query_zone); else printf("This...