; Sourcecode erzeugt mit PowerWindows V2.5

       INCDIR "sys:asm/include"
       INCLUDE exec/types.i
       INCLUDE intuition/intuition.i

NULL   EQU     0

       XDEF   MyWindow;

MyWindow:
	dc.w	75,85	;window XY origin relative to TopLeft of screen
	dc.w	420,110	;window width and height
	dc.b	0,2	;detail and block pens
	dc.l	NEWSIZE+CLOSEWINDOW	;IDCMP flags
	dc.l	WINDOWSIZING+WINDOWDRAG+WINDOWDEPTH+WINDOWCLOSE+ACTIVATE	;other window flags
	dc.l	NULL	;first gadget in gadget list
	dc.l	NULL	;custom CHECKMARK imagery
	dc.l	NewWindowName1	;window title
	dc.l	NULL	;custom screen pointer
	dc.l	NULL	;custom bitmap
	dc.w	10,10	;minimum width and height
	dc.w	-1,-1	;maximum width and height
	dc.w	WBENCHSCREEN	;destination screen type
NewWindowName1:
	dc.b	' Oberon mit Assembler & C!!! ',0
	cnop 0,2
