Everybody, use GuitarPro 5 or 6 to make your songs, it can export to MIDI!
Code: .nolist
#include "mt3notes.inc"
.list
.org $0000
.db $BB,$6D
.db $C9
.db $31,$80
.db 0,1,4
Start:
title: .db "",0
artist: .db "",0
album: .db "",0
tempo = 120
song:
playsection(s0)
playsection(s1)
playsection(s2)
endsong
s0:
note(b0,b0,b0,b0,12500/tempo)
note(a0,a0,a0,a0,73256/tempo)
note(g0,g0,g0,g0,146563/tempo)
note(b0,b0,b0,b0,12500/tempo)
note(a0,a0,a0,a0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
note(e0,e0,e0,e0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
endsection
s1:
note(e0,e0,e0,e0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
note(g0,g0,g0,g0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
note(e0,e0,e0,e0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
note(e0,e0,e0,e0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
note(e0,e0,e0,e0,12500/tempo)
endsection
s2:
note(f0,f0,f0,f0,12500/tempo)
note(rest,rest,rest,rest,12500/tempo)
note(e0,e0,e0,e0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
note(e0,e0,e0,e0,12500/tempo)
note(f0,f0,f0,f0,12500/tempo)
endsection
.end
END
I got this in the converter, how can I make this a file now?
Thanks