#include "mbed.h"
//declareexternalassemblylanguagefunction(ina*.sfile)
//extern"C"intmy_asm(intvalue);

DigitalOut myled1(LED1);

int main() {
    while(1) {
        myled1 = 1; // LED is ON
        wait(0.2); // 200 ms
        myled1 = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}
