microbit_examples_0.1.0_a926cc69/analog_out/obj/b__main.ads

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
pragma Warnings (Off);
pragma Ada_95;
pragma Restrictions (No_Exception_Propagation);
with System;
with System.Parameters;
with System.Secondary_Stack;
package ada_main is


   GNAT_Version : constant String :=
                    "GNAT Version: Community 2020 (20200429-93)" & ASCII.NUL;
   pragma Export (C, GNAT_Version, "__gnat_version");

   Ada_Main_Program_Name : constant String := "_ada_main" & ASCII.NUL;
   pragma Export (C, Ada_Main_Program_Name, "__gnat_ada_main_program_name");

   procedure adainit;
   pragma Export (C, adainit, "adainit");

   procedure main;
   pragma Export (C, main, "main");

   --  BEGIN ELABORATION ORDER
   --  ada%s
   --  interfaces%s
   --  system%s
   --  ada.exceptions%s
   --  ada.exceptions%b
   --  system.machine_code%s
   --  system.parameters%s
   --  system.storage_elements%s
   --  system.storage_elements%b
   --  system.secondary_stack%s
   --  system.secondary_stack%b
   --  ada.tags%s
   --  ada.tags%b
   --  system.unsigned_types%s
   --  system.assertions%s
   --  system.assertions%b
   --  cortex_m%s
   --  cortex_m_svd%s
   --  hal%s
   --  cortex_m_svd.nvic%s
   --  nrf_svd%s
   --  nrf_svd.aar%s
   --  nrf_svd.adc%s
   --  nrf_svd.ccm%s
   --  nrf_svd.clock%s
   --  nrf_svd.ecb%s
   --  nrf_svd.gpio%s
   --  nrf_svd.gpiote%s
   --  nrf_svd.power%s
   --  nrf_svd.ppi%s
   --  nrf_svd.qdec%s
   --  nrf_svd.radio%s
   --  nrf_svd.rng%s
   --  nrf_svd.rtc%s
   --  nrf_svd.spi%s
   --  nrf_svd.temp%s
   --  nrf_svd.timer%s
   --  nrf_svd.twi%s
   --  nrf_svd.uart%s
   --  nrf_svd.wdt%s
   --  cortex_m.nvic%s
   --  cortex_m.nvic%b
   --  hal.gpio%s
   --  hal.i2c%s
   --  hal.spi%s
   --  hal.time%s
   --  hal.uart%s
   --  nrf%s
   --  nrf.events%s
   --  nrf.events%b
   --  nrf.gpio%s
   --  nrf.gpio%b
   --  nrf.gpio.tasks_and_events%s
   --  nrf.gpio.tasks_and_events%b
   --  nrf.interrupts%s
   --  nrf.interrupts%b
   --  nrf.rtc%s
   --  nrf.rtc%b
   --  nrf.spi_master%s
   --  nrf.spi_master%b
   --  nrf.tasks%s
   --  nrf.tasks%b
   --  nrf.adc%s
   --  nrf.adc%b
   --  nrf.clock%s
   --  nrf.clock%b
   --  nrf.ppi%s
   --  nrf.ppi%b
   --  nrf.timers%s
   --  nrf.timers%b
   --  nrf.twi%s
   --  nrf.twi%b
   --  nrf.uart%s
   --  nrf.uart%b
   --  nrf.device%s
   --  microbit%s
   --  microbit.ios%s
   --  microbit.ios%b
   --  microbit.time%s
   --  microbit.time%b
   --  microbit.buttons%s
   --  microbit.buttons%b
   --  microbit.display%s
   --  microbit.display%b
   --  microbit.display.symbols%s
   --  microbit.display.symbols%b
   --  main%b
   --  END ELABORATION ORDER

end ada_main;