QUERENDO PROGRAMAR LPC2103 EM BASIC ou C?

'BASIC
DO
IO(15) = 0 ' turn on the LED
WAIT(1000) ' wait a second
IO(15) = 1 ' turn off the LED
WAIT(1000) ' wait a second
UNTIL 0
'C
while(1){ // loop forever
LOW(15); // turn on the LED
WAIT(1000); // wait a second
HIGH(15); // turn off the LED
WAIT(1000); // wait a second
}
Quanto voce pagaria para adicionar este recurso em seu LPC2103?
Veja o manual
http://www.inf.furb.br/~maw/arm/asm51.pdf
DO
IO(15) = 0 ' turn on the LED
WAIT(1000) ' wait a second
IO(15) = 1 ' turn off the LED
WAIT(1000) ' wait a second
UNTIL 0
'C
while(1){ // loop forever
LOW(15); // turn on the LED
WAIT(1000); // wait a second
HIGH(15); // turn off the LED
WAIT(1000); // wait a second
}
Quanto voce pagaria para adicionar este recurso em seu LPC2103?
Veja o manual
http://www.inf.furb.br/~maw/arm/asm51.pdf