• "#pragma SRC" ->obj not generate
    I've added a "#pragma SRC" to see the asm code of my C file, and on the compilation, the obj file was not generated (and so the linking stopped with ERROR L210: I/O input File). Is it normal?
  • #pragma SRC: respecified or conflicting control
    I have a very simple program: void main(void) { #pragma asm inc a #pragma endasm } If I compile it as it is I get: error C272: 'asm/endasm' requires src-control to be active. So to fix...
  • GETTING ERROR WHILE COMPILING #pragma src
    HI all , i have c programme its around 600lines of coding , bcos of the code size constraint i have to convert it to asm , i used src ie #pragma src.when i compiled i got error 210,input file error...
  • #pragma pack
    Does the realview arm compiler support the following syntax: #pragma pack(push, 1) and #pragma pack(pop) or do I need to separate it into #pragma push #pragma pack(1) and #pragma pop...
  • #pragma bytealign
    I have defined a #pragma bytealign in my code after a #pragma pack(1), in order to use structure pointers then I have defined a #pragma pack() to cancel the effect of the first pack(1) after the definition...