        org     16384
        defw    42h     ; to mark this end of the range as dirtied!

	org	30000

	INCLUDE "ucl.asm"
packed_data:
	BINCLUDE "hellokitty.data"

	org	40000
testharness:
	ld	bc,	packed_data
	ld	de,	16384	; destination (eg. frame buffer address)
	call	L2bunpack	; unpack data at 'bc' address to 'de' address

	di
	halt			; hang the machine ;)

testharness_setup:
	ld	hl,	65530
	ld	sp,	hl
	jp	testharness

        org     65530		; WE START HERE (toolchain artifact)
        jp      testharness_setup