	SECTION	BennDaglishSID,Code_C

Start
	moveq	#-1,D0			; security
	rts

	dc.b	'DAGLISH!'		; ID string

	dc.l	Play			; pointer to Interrupt routine
					; (must exist)
	dc.l	Audio			; pointer to Audio Interrupt routine
					; (must exist)
	dc.l	InitSong		; pointer to InitSong routine
					; (must exist)
	dc.l	2			; number of subsongs (must exist)
	dc.l	ModuleName		; pointer to module name label
					; (must exist or 0)
	dc.l	AuthorName		; pointer to module author label
					; (must exist or 0)
	dc.l	SpecialInfo		; pointer to special text label
					; (must exist or 0)

	dc.l	ModuleEnd-Start		; size of loaded file
	dc.l	ModuleEnd-ModuleStart	; size of loaded module
	dc.l	SampleEnd-SampleStart	; size of samples
	dc.l	(ModuleEnd-ModuleStart)-(SampleEnd-SampleStart)
					; size of songdata (with replayer)
	dc.l	0			; private

ModuleName
	dc.b	'The Flintstones',0
AuthorName
	dc.b	'Benn Daglish',0
SpecialInfo
	dc.b	'(c) 1988 by Teque/Grandslam',10,10
	dc.b	'Ripped and adapted by Don Adan/Wanted Team !',0
	even
