#include #include #include #include "spi.h" #include "psg.h" #include "scheduler.h" #include "sequencer.h" #include "melody.h" int main() { WDTCTL = WDTPW | WDTHOLD; __disable_interrupt(); // highest possible system clock DCOCTL = DCO0 | DCO1 | DCO2; BCSCTL1 = XT2OFF | RSEL0 | RSEL1 | RSEL2 | RSEL3; BCSCTL2 = 0; BCSCTL3 = 0; schInit(); spiInit(); psgInit(); sequencerInit(); __enable_interrupt(); melodyInit(); while (1) { schExec(); } }