// simple pin toggle demo
#include <stdint.h>
#include <propeller2.h>

#if 0
#define PIN 56
#define DELAY 40000000
#else
#define PIN 0
#endif

void main()
{
    for(;;) {
        _pinnot(PIN);
#ifdef DELAY        
        _waitx(DELAY);
#endif        
    }
}
