;temptempo	.equ	tempo*7
;temptemp	.equ	temptempo/4
tmpfct		.equ	242668/tempo

quarter	.equ	tmpfct*60		;quarter note length
whole		.equ	quarter*4		;whole note length
half		.equ	quarter*2		;half note length
eighth		.equ	quarter/2		;eighth note length
sixteenth	.equ	quarter/4		;sixteenth note length
thirtysecond	.equ	quarter/8		;thirtysecond note length
sixtyfourth	.equ	quarter/16		;sixtyfourth note length

half3		.equ	whole/3			;half note triplets
quarter3	.equ	half/3			;quarter note triplets
eighth3	.equ	quarter/3		;eighth note triplets
sixteenth3	.equ	eighth/3		;sixteenth note triplets
thirtysecond3	.equ	sixteenth/3		;thirtysecond note triplets
sixtyfourth3	.equ	thirtysecond/3		;sixtyfourth note triplets