//---------------------------------------
// Assembly via Arduino - Programming ADC
//---------------------------------------
extern "C"
{
void start();
void button();
}
//----------------------------------------------------
void setup()
{
start();
}
//----------------------------------------------------
void loop()
{
button();
delay(1000);
}