/examples/scrfuzz/scrfuzz.asm
	name ScreenFuzz
	public _screen_fuzz

IOP	SEGMENT

; increments screen memory in an infinite loop
_screen_fuzz:
	lpd ga, [pp].4  ; pp.4 is the input buffer address
	movi ix, 0
loop:	inc [ga+ix+]
	andi ix, 07ffh
	jmp loop

IOP	ENDS