		DOSSEG
		.MODEL	small
		.STACK	100h
		.DATA

		; place all data declarations here

		.CODE
begin:		mov	ax,@DATA		; set up ds register
		mov	ds,ax

		; place code for main program here

		mov	ax,4C00h		; terminate program
		int	21h			; with return code

		; place subroutine code here

		END	begin