
	INCDIR	"GMSDev:Includes/"
	INCLUDE	"dpkernel/dpkernel.i"

	SECTION	"Reference",DATA

Start:	dc.l	TAGS_REFERENCE,0
	dc.l	REFA_ClassID,ID_OBJECTFILE
	dc.l	REFA_ClassName,.name
	dc.l	REFA_ModName,.module
	dc.l	REFA_ModNumber,MOD_OBJECTS
	dc.l	REFA_CheckFile,.checkfile
	dc.l	TAGEND

.name	dc.b	"Object File",0
	even

.module	dc.b	"mod.objects",0
	even

.checkfile
	cmp.l	#"OBJF",$20(a1)
	bne.s	.exit
	moveq	#99,d0
	rts

.exit	move	#00,d0
	rts

