Created
February 27, 2015 17:22
-
-
Save krobro/69041d086011255c66ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Mario main them song | |
int melody[] = { | |
NOTE_E7, NOTE_E7, 0, NOTE_E7, | |
0, NOTE_C7, NOTE_E7, 0, | |
NOTE_G7, 0, 0, 0, | |
NOTE_G6, 0, 0, 0, | |
NOTE_C7, 0, 0, NOTE_G6, | |
0, 0, NOTE_E6, 0, | |
0, NOTE_A6, 0, NOTE_B6, | |
0, NOTE_AS6, NOTE_A6, 0, | |
NOTE_G6, NOTE_E7, NOTE_G7, | |
NOTE_A7, 0, NOTE_F7, NOTE_G7, | |
0, NOTE_E7, 0, NOTE_C7, | |
NOTE_D7, NOTE_B6, 0, 0, | |
NOTE_C7, 0, 0, NOTE_G6, | |
0, 0, NOTE_E6, 0, | |
0, NOTE_A6, 0, NOTE_B6, | |
0, NOTE_AS6, NOTE_A6, 0, | |
NOTE_G6, NOTE_E7, NOTE_G7, | |
NOTE_A7, 0, NOTE_F7, NOTE_G7, | |
0, NOTE_E7, 0, NOTE_C7, | |
NOTE_D7, NOTE_B6, 0, 0 | |
}; | |
int noteDurations[] = { | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
9, 9, 9, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
9, 9, 9, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
12, 12, 12, 12, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment