• Keil Compiler - SizeOf DataTypes
    Is there a datasheet or a link someone can point me to that lists the size of data types when compiling an arm cortex using keil? I'm interested in the microcontroller LM3S1958, but there doesn't...
  • sizeof struct
    I have a struct with 2 members of type double and 1 member of type long. The sizeof() function returns 24. Normaly it should be 20(2*8bytes for the doubles and 4 bytes for the long). When I add...
  • sizeof operator
    Hai can anyone give the information abt sizeof... how to sizeof operatot exactly in 8051 family
  • sizeof bugs...
    As we all know... sizeof( typedef ) should return the size, in bytes, of its operand. If the operand is a type, such as a float, it must be enclosed in parentheses. I found a bug in sizeof( tMyStruct...
  • sizeof to assembler
    I use the following means of making .h files usable in assembler #ifdef CCODE // bypass structs for assembler modules structs ... such as typedef struct { ......... } E1_SEI; #endif extern...