Introduction: MyAxe 08

Hello! I wanted to make a simple, cheap and minimalistic target board for picaxe.
It has got M/F headers and only the necessary components.
You can even make your own shields!
Later, I will add circuit diagrams and other stuff!
Video of more complicated blink:

------------------------------------------------------------------
symbol led = 0 
symbol delay = b0
delay = 1000
main:
high led
pause delay
low led
pause delay 
let delay = delay - 10
goto main

------------------------------------------------------------------