	.org 32256
	ld  hl,$0000
	ld  de,$7000
	ld  c,0
mainlop:
	ld  a,(hl)
	ld  (de),a
	inc hl
	inc de
	inc c
	jr  nz,mainlop
	ret
	.end
