;331 Example 3 -Basic ASM
;**begin data block definition
TDR	EQU	$6000	;top of data record
	ORG	TDR	;set orgin
	FCB	$AA,$BB,$CC,$FF,$EE,$01
;**begin program
Top	EQU	$4000	;top of program
	ORG	Top
	LDAA	#$00
	LDAB	$6000
	INCA
	LDAB	$6001
	INCA
	LDAB	$6002
	INCA
	LDAB	$6003
	END

