• creating random integers from seed value
    Hi, I'm trying to translate this code: randomInteger =(((randomInteger * 214013) + 2531011) >> 16) & 0x7FFF ; into assembly in order to create a random integer generator, I'm guessing I'm needing...
  • creating random integers from seed value
    Hi, I'm trying to translate this code: randomInteger =(((randomInteger * 214013) + 2531011) >> 16) & 0x7FFF ; into assembly in order to create a random integer generator, I'm guessing I'm needing...
  • max value for seed for srand() function
    In Keil's functions, the value for the seed value for srand() is 'unsigned int' according to their function definition. Which for my processor is 4 bytes - sizeof(unsigned int) = 4. However, it looks...
  • max value for seed for srand() function
    In Keil's functions, the value for the seed value for srand() is 'unsigned int' according to their function definition. Which for my processor is 4 bytes - sizeof(unsigned int) = 4. However, it looks...
  • How to use Secure Monitor Call(SMC) and entrance Monitor Mode?
    Hello, experts: My platform has a Cortex-A9 MPCore cpu, It supports trustzone tech. I want to change NSACR.TL bit, but It need in secure state. I want to change non-secure state to secure state...