• ZI-data size increases with Stack Size increase
    If i set the stack size to 10k(0x2800) in the configuration wizard and re-build the code, ZI-data size is 18868. But when i increase the stack size to 20k(0x5000),ZI-data becomes 29108. Why is this so...
  • ZI-data size increases with Stack Size increase
    If i set the stack size to 10k(0x2800) in the configuration wizard and re-build the code, ZI-data size is 18868. But when i increase the stack size to 20k(0x5000),ZI-data becomes 29108. Why is this so...
  • Code size Increased Unreasonably!
    Hi Everyone, I'm using C251 compiler with optimization level 9 with 'size' emphasis. I've a function similar to one given below. int * fun(short* param1, Boolean param2){ //..........code...
  • Code size Increased Unreasonably!
    Hi Everyone, I'm using C251 compiler with optimization level 9 with 'size' emphasis. I've a function similar to one given below. int * fun(short* param1, Boolean param2){ //..........code...
  • Increasing a variable size, causes Code and RO-Data to increase (instead of RW-Data)
    Hi I have the following code in cryptography. It is a function which accepts a "key" and "state" inputs and then encrypts state using key. uint state[4]={0,1,2,3}; uint key[8]={1,2,3,4,5,6...