Quantcast
Channel: Keil Discussion Forum RSS Feed
Viewing all articles
Browse latest Browse all 3049

ARM: Increasing a variable size, causes Code and RO-Data to increase (instead of RW-Data) (5 Replies)

$
0
0
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,7,8}; Encrypt(state,key); When I increase size of the "state" variable, I expect to see RW-Data to grow. Because variables are located in RAM. But I see that code size and RO-Data increase instead.

Viewing all articles
Browse latest Browse all 3049

Trending Articles