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

	SECTION	"ObjectData",DATA

Objects	dc.l	"OBJF"	;Header.

OBJ_Screen:
	dc.l	"TAGS"	;Structure ID.
	dc.l	.next	;Pointer to next object.
	dc.b	"Screen",0	;Name.
	even
.data	dc.l  TAGS_SCREEN,0
	dc.l  GSA_Width,640
	dc.l  GSA_Height,256
	dc.l  GSA_Attrib,SCR_CENTRE
	dc.l  GSA_ScrMode,SM_HIRES|SM_LACED
	dc.l    GSA_BitmapTags,0
	dc.l    BMA_Type,ILBM
	dc.l    BMA_AmtColours,16
	dc.l    TAGEND,0
	dc.l  TAGEND

.next ;---------------------------------------------------------------------;

OBJ_Picture:
	dc.l	"TAGS"	;Structure ID.
	dc.l	.next	;Pointer to next object.
	dc.b	"Picture",0	;Name.
	even
.data	dc.l	TAGS_PICTURE,0
	dc.l	PCA_ScrMode,SM_HIRES|SM_LACED
	dc.l	PCA_Source,.file
	dc.l	  PCA_BitmapTags,0
	dc.l	  BMA_AmtColours,16
	dc.l	  BMA_Type,ILBM
	dc.l	  BMA_Width,640
	dc.l	  BMA_Height,256 
	dc.l	  BMA_MemType,MEM_VIDEO
	dc.l	  TAGEND,0
	dc.l	TAGEND

.file	FILENAME "GMS:demos/data/PIC.Pic640x256"

.next ;---------------------------------------------------------------------;

	dc.l	"OEND"

