test_main.c 394 B

12345678910111213141516
  1. #include <stdio.h>
  2. const static uint32_t __attribute__ ((aligned (64))) testTab[] =
  3. {
  4. 0xff445566, 0x44556677, 0x33221100,
  5. 0x88997755, 0x99887755, 0x88997755,
  6. 0x99546327, 0x7946fa9e, 0xa6b5f8ee,
  7. 0x12345678
  8. };
  9. void app_main(void)
  10. {
  11. /* Do something with the array, in order to avoid it being discarded. */
  12. for (uint32_t i = 0; i < 10; i++)
  13. printf ("%x\n", testTab[i]);
  14. }