Guest User

Untitled

a guest
Dec 13th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. volatile uint32_t word;
  2. for (i=0; i<10; i++)
  3. {
  4. word = *(uint32_t *)(ADDRESS_IN_MEMORY);
  5. printf("%"PRIu32, word);
  6. some_function_compiled_in_other_object(); /* this function may or may not change memory content at adress ADDRESS_IN_MEMORY */
  7. }
Add Comment
Please, Sign In to add comment